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
locals {
network=(
var.vpc_create? {
id =try(google_compute_network.network[0].id, null)
name =try(google_compute_network.network[0].name, null)
self_link =try(google_compute_network.network[0].self_link, null)
**internal_ipv6_range =try(google_compute_network.network[0].internal_ipv6_range, null)**
}
...
}
The text was updated successfully, but these errors were encountered:
kaysalawu
changed the title
Add internal_ipv6_range to local.network variable to fix output variable internal_ipv6_range
Add internal_ipv6_range to local.network variable in net-vpc module
Oct 23, 2024
The output variable below does not work because the key internal_ipv6_range does not exist in local.network in main.tf
The correct code should be:
The text was updated successfully, but these errors were encountered: