Skip to content

Commit

Permalink
OPENSHIFTP-26: update the vpc to powervs region mapping
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <pbastide@us.ibm.com>
  • Loading branch information
prb112 committed May 31, 2024
1 parent c4cf7da commit 7f8b5ca
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions modules/0_vpc/reuse/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
# If the PowerVS Region or Zone is empty, the code auto-populates the zone/region information
locals {
vpc_pvs = {
us-south = {
us-south = { #OK
region = "dal10",
zone = "dal"
},
us-east = {
region = "us-east",
zone = "us-east"
us-east = { #OK
region = "wdc",
zone = "wdc07"
},
br-sao = {
region = "sao",
Expand All @@ -35,7 +35,7 @@ locals {
region = "mon",
zone = "mon01"
},
eu-de = {
eu-de = { #OK
region = "eu-de",
zone = "eu-de-1"
},
Expand All @@ -49,7 +49,7 @@ locals {
},
au-syd = {
region = "syd",
zone = "syd05"
zone = "syd04"
},
jp-tok = {
region = "tok",
Expand All @@ -58,6 +58,10 @@ locals {
jp-osa = {
region = "osa",
zone = "osa21"
},
br-sao = { #OK
region = "sao",
zone = "sao04"
}
}
# Certain regions don't have a good mapping
Expand Down

0 comments on commit 7f8b5ca

Please sign in to comment.