From 87481f74cd71cc5512ed2a63d51ee483e2f4dee2 Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Wed, 16 Aug 2023 10:27:04 -0400 Subject: [PATCH] Simplified tags to a single input. --- variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index 2002081..73072a6 100644 --- a/variables.tf +++ b/variables.tf @@ -14,10 +14,10 @@ variable "region" { type = string } -variable "tag_costallocation" { - description = "Tag CostAllocation (default)" - type = string - default = "csvd:infrastructure" +variable "tags" { + description = "Arbitrary tags to add to objects created in AWS." + type = map(string) + default = {} } variable "profile" {