Fix #1394, network value for network_interface isn't a computed value and there is no need to refresh it each time instance data is read

This commit is contained in:
Dainis Tillers 2015-04-08 15:28:57 +03:00
parent 952af7ad20
commit 28e29aec19

View File

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