Skip to content

Commit d380c9d

Browse files
authored
Merge pull request #8670 from ameukam/oci-proxy-switch-eu-regions
GCP: switch buckets for the prod registry
2 parents c48c49f + a9ec4c7 commit d380c9d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

infra/gcp/terraform/k8s-infra-oci-proxy-prod/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ terraform {
2929
required_providers {
3030
google = {
3131
source = "hashicorp/google"
32-
version = "~> 4.84.0"
32+
version = "~> 6.50.0"
3333
}
3434
google-beta = {
3535
source = "hashicorp/google-beta"
36-
version = "~> 4.84.0"
36+
version = "~> 6.50.0"
3737
}
3838
}
3939
}

infra/gcp/terraform/k8s-infra-oci-proxy/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ terraform {
2929
required_providers {
3030
google = {
3131
source = "hashicorp/google"
32-
version = "~> 4.84.0"
32+
version = "~> 6.50.0"
3333
}
3434
google-beta = {
3535
source = "hashicorp/google-beta"
36-
version = "~> 4.84.0"
36+
version = "~> 6.50.0"
3737
}
3838
}
3939
}

infra/gcp/terraform/modules/monitoring/uptime-alert/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ terraform {
2020
required_providers {
2121
google = {
2222
source = "hashicorp/google"
23-
version = "~> 4.84.0"
23+
version = "~> 6.50.0"
2424
}
2525
google-beta = {
2626
source = "hashicorp/google-beta"
27-
version = "~> 4.84.0"
27+
version = "~> 6.50.0"
2828
}
2929
}
3030
}

infra/gcp/terraform/modules/oci-proxy/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ locals {
237237
environment_variables = [
238238
{
239239
name = "DEFAULT_AWS_BASE_URL",
240-
// AWS eu-central-1 is Frankfurt
241-
value = "https://prod-registry-k8s-io-eu-central-1.s3.dualstack.eu-central-1.amazonaws.com",
240+
// AWS eu-south-1 is Milan
241+
value = "https://prod-registry-k8s-io-eu-south-1.s3.dualstack.eu-south-1.amazonaws.com",
242242
},
243243
{
244244
name = "UPSTREAM_REGISTRY_ENDPOINT",
@@ -255,8 +255,8 @@ locals {
255255
environment_variables = [
256256
{
257257
name = "DEFAULT_AWS_BASE_URL",
258-
// AWS eu-west-1 is in Ireland
259-
value = "https://prod-registry-k8s-io-eu-west-1.s3.dualstack.eu-west-1.amazonaws.com",
258+
// AWS eu-west-3 is in Paris
259+
value = "https://prod-registry-k8s-io-eu-west-3.s3.dualstack.eu-west-3.amazonaws.com",
260260
},
261261
{
262262
name = "UPSTREAM_REGISTRY_ENDPOINT",

0 commit comments

Comments
 (0)