From 78248e103d93c36e2b51f500d5ddead47cb90761 Mon Sep 17 00:00:00 2001 From: lucasmacedot Date: Sun, 25 Aug 2024 21:24:37 -0400 Subject: [PATCH] Fix type of `container_port` --- _variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_variables.tf b/_variables.tf index 4681796..28235ea 100644 --- a/_variables.tf +++ b/_variables.tf @@ -5,7 +5,7 @@ variable "name" { variable "container_port" { default = 8080 - type = string + type = number description = "Port your container listens (used in the placeholder task definition)" }