From 2ed8d86c7cc8b304d664c1d6b75e3d2f0808b73c Mon Sep 17 00:00:00 2001 From: Aditya Agarwal Date: Wed, 13 Oct 2021 12:09:22 +0530 Subject: [PATCH] fix the tags variable type --- ecr/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecr/variables.tf b/ecr/variables.tf index 46ce734..4b4c640 100644 --- a/ecr/variables.tf +++ b/ecr/variables.tf @@ -19,6 +19,6 @@ variable "untagged_images_to_keep" { } variable "tags" { - type = object + type = map description = "Tags to pass" }