From 8d4efeac48acb9bd008e7765e28750c914496f78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomas=20B=C3=A4ckman?= <50198527+tomasbackman@users.noreply.github.com> Date: Fri, 10 Jan 2020 16:08:28 +0100 Subject: [PATCH] missing type list(string) allowed_security_groups variable sis described and used as a list so should have the type constraints added --- variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/variables.tf b/variables.tf index b630723..5ec57a3 100644 --- a/variables.tf +++ b/variables.tf @@ -22,6 +22,7 @@ variable "replica_count" { variable "allowed_security_groups" { description = "A list of Security Group ID's to allow access to." + type = list(string) default = [] }