diff --git a/terraform-unity/modules/terraform-unity-sps-airflow/locals.tf b/terraform-unity/modules/terraform-unity-sps-airflow/locals.tf index 58f31a8c..84bd5a05 100644 --- a/terraform-unity/modules/terraform-unity-sps-airflow/locals.tf +++ b/terraform-unity/modules/terraform-unity-sps-airflow/locals.tf @@ -21,6 +21,7 @@ locals { "ops" = "#bf4f4f" "prod" = "#bf4f4f" "test" = "#cfdf4f" + "int" = "#cfdf4f" "dev" = "#58cc35" "sbg-dev" = "#58cc35" }[var.venue] diff --git a/terraform-unity/variables.tf b/terraform-unity/variables.tf index dd3d5262..8f77eb3f 100644 --- a/terraform-unity/variables.tf +++ b/terraform-unity/variables.tf @@ -8,7 +8,7 @@ variable "venue" { description = "The MCP venue in which the resources will be deployed." type = string validation { - condition = can(regex("^(dev|test|prod|ops|sbg-dev)$", var.venue)) + condition = can(regex("^(dev|test|prod|ops|sbg-dev|int)$", var.venue)) error_message = "Invalid deployment type." } }