Merge pull request #2374 from hashicorp/b-aws-detect-instance-type-drift

provider/aws: detect instance_type drift on aws_instance
This commit is contained in:
Paul Hinze 2015-06-23 15:01:20 -05:00
commit 95235ba2cc
1 changed files with 1 additions and 0 deletions

View File

@ -451,6 +451,7 @@ func resourceAwsInstanceRead(d *schema.ResourceData, meta interface{}) error {
d.Set("tenancy", instance.Placement.Tenancy)
}
d.Set("instance_type", instance.InstanceType)
d.Set("key_name", instance.KeyName)
d.Set("public_dns", instance.PublicDNSName)
d.Set("public_ip", instance.PublicIPAddress)