diff --git a/terraform/environments/production/relays.tf b/terraform/environments/production/relays.tf index 8bdf81a71..76cc9f424 100644 --- a/terraform/environments/production/relays.tf +++ b/terraform/environments/production/relays.tf @@ -158,12 +158,14 @@ module "relays" { replicas = 1 zones = ["me-central1-a"] } - "me-central2" = { - cidr_range = "10.154.1.0/24" - type = "e2-micro" - replicas = 1 - zones = ["me-central2-a"] - } + # Fails with: + # Access to the region is unavailable. Please contact our sales team at https://cloud.google.com/contact for further assistance." + # "me-central2" = { + # cidr_range = "10.154.1.0/24" + # type = "e2-micro" + # replicas = 1 + # zones = ["me-central2-a"] + # } "me-west1" = { cidr_range = "10.155.1.0/24" type = "e2-micro" diff --git a/terraform/environments/staging/relays.tf b/terraform/environments/staging/relays.tf index d0f479cbd..2c739ea6c 100644 --- a/terraform/environments/staging/relays.tf +++ b/terraform/environments/staging/relays.tf @@ -153,12 +153,14 @@ module "relays" { replicas = 1 zones = ["me-central1-a"] } - "me-central2" = { - cidr_range = "10.154.1.0/24" - type = "e2-micro" - replicas = 1 - zones = ["me-central2-a"] - } + # Fails with: + # Access to the region is unavailable. Please contact our sales team at https://cloud.google.com/contact for further assistance." + # "me-central2" = { + # cidr_range = "10.154.1.0/24" + # type = "e2-micro" + # replicas = 1 + # zones = ["me-central2-a"] + # } "me-west1" = { cidr_range = "10.155.1.0/24" type = "e2-micro"