From 6bad39ba9739a92c587a9a47800811e44993f1ff Mon Sep 17 00:00:00 2001 From: Don Badrak Date: Mon, 22 Jun 2020 14:30:35 -0400 Subject: [PATCH] add tags --- variables.tf | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/variables.tf b/variables.tf index 429b59f..771bef0 100644 --- a/variables.tf +++ b/variables.tf @@ -1,16 +1,22 @@ variable "bucket_name" { description = "AWS Bucket Name" - type = string + type = string } variable "bucket_folders" { description = "List of folders (keys) to create after creation of bucket" - type = list(string) - default = [ ] + type = list(string) + default = [] } variable "kms_key_id" { description = "AWS KMS Key ID (one per bucket)" - type = string - default = "" + type = string + default = "" +} + +variable "tags" { + description = "AWS Tags" + type = map(string) + default = { } }