fix: set "ForceNew: true" to labelSchema (#152)

This commit is contained in:
Shunsuke Suzuki 2021-03-29 18:04:03 +09:00 committed by GitHub
parent 0de7b5dc2c
commit 4936f08c4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,11 +61,13 @@ var labelSchema = &schema.Resource{
Type: schema.TypeString,
Description: "Name of the label",
Required: true,
ForceNew: true,
},
"value": {
Type: schema.TypeString,
Description: "Value of the label",
Required: true,
ForceNew: true,
},
},
}