diff --git a/solutions/fully-configurable/variables.tf b/solutions/fully-configurable/variables.tf index 0828f85..44f690a 100644 --- a/solutions/fully-configurable/variables.tf +++ b/solutions/fully-configurable/variables.tf @@ -86,6 +86,7 @@ variable "region" { "us-east", "eu-de", "eu-es", + "eu-fr2", "eu-gb", "jp-osa", "jp-tok", @@ -93,7 +94,7 @@ variable "region" { "ca-tor", "au-syd", ], var.region) - error_message = "Invalid region selected. Allowed values are `us-south` ,`us-east`, `eu-de`, `eu-es`, `eu-gb`, `jp-osa`, `jp-tok`, `br-sao`, `ca-tor`, and `au-syd`." + error_message = "Invalid region selected. Allowed values are `us-south` ,`us-east`, `eu-de`, `eu-es`, `eu-fr2`, `eu-gb`, `jp-osa`, `jp-tok`, `br-sao`, `ca-tor`, and `au-syd`." } } diff --git a/tests/pr_test.go b/tests/pr_test.go index 8d28860..100d31a 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -36,6 +36,7 @@ var validRegions = []string{ "us-east", "eu-de", "eu-es", + "eu-fr2", "eu-gb", "jp-osa", "jp-tok",