From 854662ce20232cf3e201d8682cf7edacb81f1785 Mon Sep 17 00:00:00 2001 From: Jacob Gillespie Date: Fri, 23 Jun 2023 18:07:10 +0100 Subject: [PATCH] Fix typo --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 14d8475..fd7792e 100644 --- a/variables.tf +++ b/variables.tf @@ -55,7 +55,7 @@ variable "allow-ssm-access" { } variable "extra-env" { - type = list({ key = string, value = string }) + type = list(object({ key = string, value = string })) description = "Extra environment variables to set on the cloud-agent" default = [] }