Merge pull request #1154 from stuntgoat/gce-add-network

providers/google: add network field to the network_interface
This commit is contained in:
Mitchell Hashimoto 2015-03-26 10:19:00 -07:00
commit 266670c1a1
1 changed files with 1 additions and 0 deletions

View File

@ -575,6 +575,7 @@ func resourceComputeInstanceRead(d *schema.ResourceData, meta interface{}) error
networkInterfaces = append(networkInterfaces, map[string]interface{}{
"name": iface.Name,
"address": iface.NetworkIP,
"network": iface.Network,
"access_config": accessConfigs,
})
}