providers/aws: vpc refresh sets instance_tenancy

This commit is contained in:
Mitchell Hashimoto 2016-04-20 10:36:28 -07:00
parent e6a3726a50
commit a6d9e343ec
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ func resourceAwsVpcRead(d *schema.ResourceData, meta interface{}) error {
vpcid := d.Id()
d.Set("cidr_block", vpc.CidrBlock)
d.Set("dhcp_options_id", vpc.DhcpOptionsId)
d.Set("instance_tenancy", vpc.InstanceTenancy)
// Tags
d.Set("tags", tagsToMap(vpc.Tags))