You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
value = "${openstack_networking_network_v2.this.id}"
description = "The Network id being created"
}
output "subnet_ids" {
value = "${data.openstack_networking_subnet_v2.created_subnets.*.id}"
description = "Subnets ids being created"
}
output "network" {
value = "${openstack_networking_network_v2.this.name}"
description = "The Network being created"
}
output "subnets" {
value = "${formatlist("%s with CIRD %s [id= %s]",data.openstack_networking_subnet_v2.created_subnets.*.name,data.openstack_networking_subnet_v2.created_subnets.*.cidr, data.openstack_networking_subnet_v2.created_subnets.*.id)}"
description = "The name of all subnets being created"