From 0b34b5fee67bc7769ee03a3e527968f65bda42b3 Mon Sep 17 00:00:00 2001 From: Junior Cabada Date: Wed, 5 Nov 2025 18:19:13 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20variables.tf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- variables.tf | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 variables.tf diff --git a/variables.tf b/variables.tf new file mode 100644 index 0000000..e5bae37 --- /dev/null +++ b/variables.tf @@ -0,0 +1,5 @@ +variable "containers" { + description = "Lista de contenedores a crear" + type = list(string) + default = ["web01", "db01", "proxy01"] +}