From 7216c013287e1bb7552d589d74b6dda1b6bfd99a Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Mon, 10 Nov 2025 12:03:50 +0100 Subject: [PATCH] Update environment variable description --- terraform/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index 67564ff..9ab4385 100755 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -1,6 +1,6 @@ variable "environment" { type = string - description = "Environment name (e.g., dev, staging, prod)" + description = "Environment name (e.g., dev, staging, prod, test)" validation { condition = can(regex("^[a-zA-Z0-9-_]+$", var.environment))