add network field to the network_interface

This commit is contained in:
stungtoat 2015-03-06 22:13:07 -08:00
parent dee37aa1dd
commit 86913b0363

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,
})
}