providers/aws: vpc refresh sets instance_tenancy
This commit is contained in:
parent
e6a3726a50
commit
a6d9e343ec
|
@ -140,6 +140,7 @@ func resourceAwsVpcRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
vpcid := d.Id()
|
vpcid := d.Id()
|
||||||
d.Set("cidr_block", vpc.CidrBlock)
|
d.Set("cidr_block", vpc.CidrBlock)
|
||||||
d.Set("dhcp_options_id", vpc.DhcpOptionsId)
|
d.Set("dhcp_options_id", vpc.DhcpOptionsId)
|
||||||
|
d.Set("instance_tenancy", vpc.InstanceTenancy)
|
||||||
|
|
||||||
// Tags
|
// Tags
|
||||||
d.Set("tags", tagsToMap(vpc.Tags))
|
d.Set("tags", tagsToMap(vpc.Tags))
|
||||||
|
|
Loading…
Reference in New Issue