From 781e512dde37e3843cb45bef1e2d20b52f9fc07e Mon Sep 17 00:00:00 2001 From: shin1x1 Date: Wed, 3 Sep 2014 20:54:36 +0900 Subject: [PATCH] fix associate_public_ip_address parameter name --- builtin/providers/aws/resource_aws_instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_instance.go b/builtin/providers/aws/resource_aws_instance.go index bd4d43add..cfd9d4d31 100644 --- a/builtin/providers/aws/resource_aws_instance.go +++ b/builtin/providers/aws/resource_aws_instance.go @@ -127,7 +127,7 @@ func resourceAwsInstanceCreate(d *schema.ResourceData, meta interface{}) error { } associatePublicIPAddress := false - if v := d.Get("associate_public_ip_addresss"); v != nil { + if v := d.Get("associate_public_ip_address"); v != nil { associatePublicIPAddress = v.(bool) }