Skip to content

Commit 31c62b9

Browse files
feat: added support for Montreal (ca-mon) region (#516)
1 parent bc840eb commit 31c62b9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

ibm_catalog.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@
104104
{
105105
"displayname": "Sao Paulo (br-sao)",
106106
"value": "br-sao"
107+
},
108+
{
109+
"displayname": "Montreal (ca-mon)",
110+
"value": "ca-mon"
107111
}
108112
]
109113
},
@@ -293,6 +297,10 @@
293297
{
294298
"displayname": "Sao Paulo (br-sao)",
295299
"value": "br-sao"
300+
},
301+
{
302+
"displayname": "Montreal (ca-mon)",
303+
"value": "ca-mon"
296304
}
297305
]
298306
},

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ variable "region" {
6464
description = "The IBM Cloud region where the Event Notifications resource is created. Possible values: `jp-osa` (Osaka), `au-syd` (Sydney), `jp-tok` (Tokyo), `eu-de` (Frankfurt), `eu-gb` (London), `eu-es` (Madrid), `eu-fr2` (BNPP), `us-south` (Dallas), `ca-tor` (Toronto), `br-sao` (Sao Paulo)"
6565
default = "us-south"
6666
validation {
67-
condition = contains(["jp-osa", "au-syd", "jp-tok", "eu-de", "eu-gb", "eu-es", "eu-fr2", "us-south", "ca-tor", "br-sao"], var.region)
67+
condition = contains(["jp-osa", "au-syd", "jp-tok", "eu-de", "eu-gb", "eu-es", "eu-fr2", "us-south", "ca-tor", "br-sao", "ca-mon"], var.region)
6868
error_message = "The specified region is not supported. The following regions are supported: `jp-osa` (Osaka), `au-syd` (Sydney), `jp-tok` (Tokyo), `eu-de` (Frankfurt), `eu-gb` (London), `eu-es` (Madrid), `eu-fr2` (BNPP), `us-south` (Dallas), `ca-tor` (Toronto), `br-sao` (Sao Paulo)."
6969
}
7070
}

0 commit comments

Comments
 (0)