From b629a8c3ae65cc9b2324a7b59aa871b75cc611ba Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lachance Date: Thu, 4 Mar 2021 23:30:41 -0500 Subject: [PATCH] fix(command): typo in the tags parameter description (#9) Signed-off-by: Jean-Philippe Lachance --- main.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 928538a..970b616 100644 --- a/main.tf +++ b/main.tf @@ -21,10 +21,9 @@ resource "aws_ssm_document" "setup_lacework_agent" { default = var.lacework_access_token } - # TODO: Figure out the proper way of passing tags to our bash script, currently does not generate a valid config.json file Tags = { type = "String" - description = "The Lacework agent token" + description = "The Lacework agent tags" default = jsonencode(var.lacework_agent_tags) } }