fix(infra): don't deploy to me-central2 (#7711)

```
Error: Error creating Subnetwork: googleapi: Error 403: Permission denied on 'locations/me-central2' (or it may not exist). Details: [ { "@type": "type.googleapis.com/google.rpc.ErrorInfo", "domain": "googleapis.com", "metadatas": { "consumer": "projects/firezone-staging", "location": "me-central2", "service": "" }, "reason": "LOCATION_POLICY_VIOLATED" }, { "@type": "type.googleapis.com/google.rpc.LocalizedMessage", "locale": "en-US", "message": "Permission denied on 'locations/me-central2' (or it may not exist)." }, { "@type": "type.googleapis.com/google.rpc.Help", "links": [ { "description": "Access to the region is unavailable. Please contact our sales team at https://cloud.google.com/contact for further assistance." } ] } ] , forbidden
```
This commit is contained in:
Jamil
2025-01-09 00:19:45 -08:00
committed by GitHub
parent 6476109b73
commit 63f250288b
2 changed files with 16 additions and 12 deletions

View File

@@ -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"

View File

@@ -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"