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 = { } }