From 70024aa62b8f19699a0e27cd75bfde6cb7239fa6 Mon Sep 17 00:00:00 2001 From: Daniel Morris Date: Wed, 2 Mar 2022 18:07:24 +0000 Subject: [PATCH] Update variable type in the example --- examples/complete/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf index 15c08c8..369cbf9 100644 --- a/examples/complete/variables.tf +++ b/examples/complete/variables.tf @@ -93,5 +93,5 @@ variable "region" { variable "tags" { default = {} description = "Map of tags to be applied to all resources." - type = object({}) + type = map(string) }