Setting admin_state_up default to true
This is to be inline with OpenStack defaulting admin_state_up to true.
This commit is contained in:
parent
b01e2e6084
commit
72660750fd
|
@ -96,6 +96,7 @@ func resourceListenerV2() *schema.Resource {
|
|||
|
||||
"admin_state_up": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Default: true,
|
||||
Optional: true,
|
||||
},
|
||||
|
||||
|
|
|
@ -59,6 +59,7 @@ func resourceLoadBalancerV2() *schema.Resource {
|
|||
|
||||
"admin_state_up": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Default: true,
|
||||
Optional: true,
|
||||
},
|
||||
|
||||
|
|
|
@ -73,6 +73,7 @@ func resourceMemberV2() *schema.Resource {
|
|||
|
||||
"admin_state_up": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Default: true,
|
||||
Optional: true,
|
||||
},
|
||||
|
||||
|
|
|
@ -79,6 +79,7 @@ func resourceMonitorV2() *schema.Resource {
|
|||
},
|
||||
"admin_state_up": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Default: true,
|
||||
Optional: true,
|
||||
},
|
||||
|
||||
|
|
|
@ -116,6 +116,7 @@ func resourcePoolV2() *schema.Resource {
|
|||
|
||||
"admin_state_up": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Default: true,
|
||||
Optional: true,
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue