From 7cce6e2514df492ce277ef1d3b69db7631e451ba Mon Sep 17 00:00:00 2001 From: "Jorge E. Gamboa G." Date: Wed, 20 Dec 2023 16:34:38 +0100 Subject: [PATCH] Configuring variables --- generic/lighsail_containers/variables.tf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/generic/lighsail_containers/variables.tf b/generic/lighsail_containers/variables.tf index 3ac73a00..ecc2e047 100644 --- a/generic/lighsail_containers/variables.tf +++ b/generic/lighsail_containers/variables.tf @@ -28,11 +28,6 @@ variable "service_name" { type = string } -variable "service_name" { - description = " The name for the container service." - type = string -} - variable "power" { description = "The power specifies the amount of memory, the number of vCPUs, and the monthly price of each node of the container service." type = string @@ -57,7 +52,7 @@ variable "containers" { type = map(object({ name = string image = string - port = string + port = map(string) command = list(string) envs = map(string) }))