Fix HTTP to HTTPS example

This commit is contained in:
Wiktor Niesiobędzki
2024-01-06 09:58:28 +00:00
committed by Wiktor Niesiobędzki
parent 05dd4b89b6
commit 2a66fcab2e
4 changed files with 17 additions and 12 deletions

View File

@@ -31,6 +31,7 @@ resource "google_compute_address" "external" {
address_type = "EXTERNAL"
ip_version = each.value.ipv6 != null ? "IPV6" : "IPV4"
ipv6_endpoint_type = try(each.value.ipv6.endpoint_type, null)
network_tier = each.value.tier
region = each.value.region
labels = each.value.labels
}