provider/aws: remove default from associate_public_ip_address
I snuck this in with #2263 because thought it was simply a stylistic clarity thing, but it actually generates a resource-replacement-forcing diff for existing resources that don't have this set in the config. Definitely don't want that. :P /cc @catsby
This commit is contained in:
parent
ec5cef4de8
commit
60a5d11fa8
|
@ -38,7 +38,6 @@ func resourceAwsInstance() *schema.Resource {
|
||||||
|
|
||||||
"associate_public_ip_address": &schema.Schema{
|
"associate_public_ip_address": &schema.Schema{
|
||||||
Type: schema.TypeBool,
|
Type: schema.TypeBool,
|
||||||
Default: false,
|
|
||||||
ForceNew: true,
|
ForceNew: true,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue