[clc] add missing ForceNew on several fields
This commit is contained in:
parent
2bd35188ad
commit
01fc4b9cdd
|
@ -35,6 +35,7 @@ func resourceCLCServer() *schema.Resource {
|
||||||
"source_server_id": &schema.Schema{
|
"source_server_id": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
"cpu": &schema.Schema{
|
"cpu": &schema.Schema{
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
|
@ -54,6 +55,7 @@ func resourceCLCServer() *schema.Resource {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Default: "standard",
|
Default: "standard",
|
||||||
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
"network_id": &schema.Schema{
|
"network_id": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
|
@ -96,10 +98,12 @@ func resourceCLCServer() *schema.Resource {
|
||||||
"configuration_id": &schema.Schema{
|
"configuration_id": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
"os_type": &schema.Schema{
|
"os_type": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
// sorta computed
|
// sorta computed
|
||||||
|
|
Loading…
Reference in New Issue