diff --git a/tags/variables.tf b/tags/variables.tf index a8b2d6c..32190aa 100644 --- a/tags/variables.tf +++ b/tags/variables.tf @@ -2,8 +2,8 @@ variable "stage" { description = "Stage on which infra should be deployed" type = string validation { - condition = can(regex("latest|test|beta|prod", var.stage)) - error_message = "Invalid stage! Allowed values are [latest, test, beta, prod]." + condition = can(regex("latest|test|beta|prod|parvati", var.stage)) + error_message = "Invalid stage! Allowed values are [latest, test, beta, prod, parvati]." } }