mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-23 16:19:42 -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,
|
Type: schema.TypeString,
|
||||||
Description: "Name of the label",
|
Description: "Name of the label",
|
||||||
Required: true,
|
Required: true,
|
||||||
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
"value": {
|
"value": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Description: "Value of the label",
|
Description: "Value of the label",
|
||||||
Required: true,
|
Required: true,
|
||||||
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue