mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-23 08:09:37 -05:00
fix: set "ForceNew: true" to labelSchema (#152)
This commit is contained in:
parent
0de7b5dc2c
commit
4936f08c4b
1 changed files with 2 additions and 0 deletions
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue