Try to fix network issue

This commit is contained in:
Philippe Caseiro 2021-03-23 10:06:27 +01:00
parent 99b4a5be59
commit a2f49ce4a8
1 changed files with 4 additions and 1 deletions

View File

@ -59,7 +59,10 @@ module "vms" {
cpu = each.value.cpu
vcpu = each.value.vcpu
ram = each.value.memory
network_interfaces = each.value.network_interfaces
network_interfaces = {
for_each = each.value.network_interfaces
{ network_id = opennebula_virtual_network.vnet[each.value.network_name].id, ip = opennebula_virtual_network.vnet[each.value.network_name].ip4}
}
tag_labels = each.value.labels
system_image_name = each.value.disks.system.name