Skip to content

Commit

Permalink
fix secrets type to list(map(string)) (#45)
Browse files Browse the repository at this point in the history
Closes #44
  • Loading branch information
sethsaperstein committed Dec 7, 2020
1 parent b3a9dd6 commit 822bb30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 822bb30

Please sign in to comment.