E2E tests fixes

This commit is contained in:
Wiktor Niesiobędzki
2023-12-18 08:01:32 +00:00
committed by Wiktor Niesiobędzki
parent 01bd0b7b01
commit 0d486fb34e
3 changed files with 9 additions and 3 deletions

View File

@@ -182,6 +182,12 @@ resource "google_compute_subnetwork" "proxy_only" {
)
purpose = each.value.global ? "GLOBAL_MANAGED_PROXY" : "REGIONAL_MANAGED_PROXY"
role = each.value.active ? "ACTIVE" : "BACKUP"
lifecycle {
# Until https://github.com/hashicorp/terraform-provider-google/issues/16804 is fixed
# ignore permadiff in ipv6_access_type for proxy_only subnets
ignore_changes = [ipv6_access_type]
}
}
resource "google_compute_subnetwork" "psc" {