From 690cf393e409221c5baab81088afa21fc2ff10a5 Mon Sep 17 00:00:00 2001 From: aarunreddy <66240041+aarunreddy@users.noreply.github.com> Date: Tue, 22 Jul 2025 20:02:01 -0700 Subject: [PATCH] Update variables.tf add domain when we run pipeline specify by domain. --- variables.tf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index a95ae995..ce90852a 100644 --- a/variables.tf +++ b/variables.tf @@ -442,7 +442,17 @@ variable "ebs_volumes" { })) default = null } - +################################################################################ +# Domain +################################################################################ +variable "image_map" { + type = map(string) + default = { + dev = "dev" + tst = "tst" + prd = "prd" + } +} ################################################################################ # IAM Role / Instance Profile ################################################################################