We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 189ed40 commit 767de5bCopy full SHA for 767de5b
cloudfoundry/structures_app.go
@@ -208,12 +208,12 @@ type ResourceChanger interface {
208
// V3
209
func ResourceDataToAppDeployV3(d *schema.ResourceData) (v3appdeployers.AppDeploy, error) {
210
211
- labels := d.Get(labelsKey).(map[string]types.NullString)
+ labels := d.Get(labelsKey).(map[string]interface{})
212
metadata := resources.Metadata{
213
Labels: map[string]types.NullString{},
214
}
215
for labelKey, label := range labels {
216
- metadata.Labels[labelKey] = label
+ metadata.Labels[labelKey] = label.(types.NullString)
217
218
219
stateAsk := v3Constants.ApplicationStarted
0 commit comments