From e0cc5b77c7df7e3cd712e183146aed11a74ff68b Mon Sep 17 00:00:00 2001 From: helfei <33071525+hfeixas@users.noreply.github.com> Date: Thu, 27 Jun 2019 11:22:49 -0400 Subject: [PATCH] Update variables.tf Fixed Invalid single-argument block definition Line 54 --- variables.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 2c286cc..d76c094 100644 --- a/variables.tf +++ b/variables.tf @@ -51,7 +51,8 @@ variable "associate_public_ip_address" { default = "false" } -variable "tags" { type = "map" +variable "tags" { + type = "map" description = "Optional : A map of tags to assign to the resource." default = { } }