diff --git a/builtin/providers/aws/resource_aws_instance.go b/builtin/providers/aws/resource_aws_instance.go index bd4d43addb..cfd9d4d319 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) }