From 0a869ba1f7eae0b5eaccd9afc18ddd0fea66cd1e Mon Sep 17 00:00:00 2001 From: Marko Bevc Date: Wed, 6 Jan 2021 09:27:34 +0000 Subject: [PATCH] Fix incorrect default value --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index fb93a53..848d72a 100644 --- a/variables.tf +++ b/variables.tf @@ -109,5 +109,5 @@ variable "allowed_regions" { variable "tags" { description = "Tags applied to the SCP policy" type = map(string) - default = [] + default = {} }