add network field to the network_interface

This commit is contained in:
stungtoat 2015-03-06 22:13:07 -08:00
parent e32ad9e3ae
commit 1ae50a18f8
1 changed files with 1 additions and 0 deletions

View File

@ -564,6 +564,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,
})
}