Merge pull request #262 from shin1x1/master

Typo: associate_public_ip_address parameter name in resource_aws_instance.go
This commit is contained in:
Jack Pearkes 2014-09-03 10:06:56 -04:00
commit 946a07537a

View File

@ -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)
}