From 60a5d11fa8d9da9bd4e607db2122a9362a4da937 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Mon, 8 Jun 2015 12:39:36 -0500 Subject: [PATCH] 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 --- builtin/providers/aws/resource_aws_instance.go | 1 - 1 file changed, 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_instance.go b/builtin/providers/aws/resource_aws_instance.go index 945d72b8a..f0f0adf3b 100644 --- a/builtin/providers/aws/resource_aws_instance.go +++ b/builtin/providers/aws/resource_aws_instance.go @@ -38,7 +38,6 @@ func resourceAwsInstance() *schema.Resource { "associate_public_ip_address": &schema.Schema{ Type: schema.TypeBool, - Default: false, ForceNew: true, Optional: true, },