Skip to content

Commit 0912332

Browse files
feat: enable wdc06 PER DC (#688)
* feat: wdc06 PER support * fix: remove unwanted * feat: enable wdc06 dc * feat: expose wdc06 DC --------- Co-authored-by: stafaniasaju <[email protected]>
1 parent de14722 commit 0912332

File tree

5 files changed

+26
-8
lines changed

5 files changed

+26
-8
lines changed

ibm_catalog.json

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@
135135
{
136136
"displayname": "Washington DC (us-east)",
137137
"value": "us-east"
138+
},
139+
{
140+
"displayname": "Washington DC 06 (wdc06) PER",
141+
"value": "wdc06"
138142
}
139143
],
140144
"custom_config": {}
@@ -376,6 +380,10 @@
376380
],
377381
"architecture": {
378382
"features": [
383+
{
384+
"title": "Power Virtual Server Instance",
385+
"description": "No"
386+
},
379387
{
380388
"title": "Number of VPCs",
381389
"description": "3"
@@ -411,10 +419,6 @@
411419
{
412420
"title": "Additional management configurations on VPC",
413421
"description": "NFS server, NTP forwarder, and DNS forwarder reachable from PowerVS Workspace"
414-
},
415-
{
416-
"title": "Power Virtual Server Instance",
417-
"description": "No"
418422
}
419423
],
420424
"diagrams": [
@@ -510,6 +514,10 @@
510514
{
511515
"displayname": "Washington DC (us-east)",
512516
"value": "us-east"
517+
},
518+
{
519+
"displayname": "Washington DC 06 (wdc06) PER",
520+
"value": "wdc06"
513521
}
514522
],
515523
"custom_config": {}
@@ -845,6 +853,10 @@
845853
],
846854
"architecture": {
847855
"features": [
856+
{
857+
"title": "Power Virtual Server Instance",
858+
"description": "Yes, 1 instance"
859+
},
848860
{
849861
"title": "Number of VPCs",
850862
"description": "1"
@@ -880,10 +892,6 @@
880892
{
881893
"title": "Additional management configurations on VPC",
882894
"description": "NFS server, NTP forwarder, and DNS forwarder reachable from PowerVS Workspace"
883-
},
884-
{
885-
"title": "Power Virtual Server Instance",
886-
"description": "Yes, 1 instance"
887895
}
888896
],
889897
"diagrams": [
@@ -999,6 +1007,10 @@
9991007
{
10001008
"displayname": "Washington DC (us-east)",
10011009
"value": "us-east"
1010+
},
1011+
{
1012+
"displayname": "Washington DC 06 (wdc06) PER",
1013+
"value": "wdc06"
10021014
}
10031015
],
10041016
"custom_config": {}

modules/powervs-vpc-landing-zone/locals_ibmcloud_regions.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ locals {
1616
"dal10" = "us-south"
1717
"dal12" = "us-south"
1818
"us-east" = "us-east"
19+
"wdc06" = "us-east"
1920
}
2021
}

solutions/extension/provider.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ locals {
1515
"dal10" = "us-south"
1616
"dal12" = "us-south"
1717
"us-east" = "us-east"
18+
"wdc06" = "us-east"
1819
}
1920
}
2021

solutions/full-stack/provider.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ locals {
1515
"dal10" = "us-south"
1616
"dal12" = "us-south"
1717
"us-east" = "us-east"
18+
"wdc06" = "us-east"
1819
}
1920

2021
ibm_powervs_zone_cloud_region_map = {
@@ -33,6 +34,7 @@ locals {
3334
"dal10" = "us-south"
3435
"dal12" = "us-south"
3536
"us-east" = "us-east"
37+
"wdc06" = "us-east"
3638
}
3739
}
3840

solutions/quickstart/provider.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ locals {
1515
"dal10" = "us-south"
1616
"dal12" = "us-south"
1717
"us-east" = "us-east"
18+
"wdc06" = "us-east"
1819
}
1920

2021
ibm_powervs_zone_cloud_region_map = {
@@ -33,6 +34,7 @@ locals {
3334
"dal10" = "us-south"
3435
"dal12" = "us-south"
3536
"us-east" = "us-east"
37+
"wdc06" = "us-east"
3638
}
3739
}
3840

0 commit comments

Comments
 (0)