Skip to content

Commit

Permalink
Merge pull request #2374 from hashicorp/b-aws-detect-instance-type-drift
Browse files Browse the repository at this point in the history
provider/aws: detect instance_type drift on aws_instance
  • Loading branch information
phinze committed Jun 23, 2015
2 parents 74fb179 + 35819b7 commit 95235ba
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions builtin/providers/aws/resource_aws_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 95235ba

Please sign in to comment.