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:
Paul Hinze 2015-06-08 12:39:36 -05:00
parent ec5cef4de8
commit 60a5d11fa8
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ func resourceAwsInstance() *schema.Resource {
"associate_public_ip_address": &schema.Schema{
Type: schema.TypeBool,
Default: false,
ForceNew: true,
Optional: true,
},