From 78bf0c354c11bc7f7b9f30620ad24497dccfe624 Mon Sep 17 00:00:00 2001 From: Seth Saperstein <42792771+sethsaperstein@users.noreply.github.com> Date: Mon, 7 Dec 2020 09:36:03 -0500 Subject: [PATCH] fix: secrets type to list(map(string)) (#45) Closes #44 --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index e5fa487..740f605 100644 --- a/variables.tf +++ b/variables.tf @@ -207,7 +207,7 @@ variable "resourceRequirements" { variable "secrets" { default = [] description = "The secrets to pass to the container" - type = list(string) + type = list(map(string)) } variable "systemControls" {