diff --git a/variables.tf b/variables.tf index 64b6b20..c9e617c 100755 --- a/variables.tf +++ b/variables.tf @@ -1,7 +1,18 @@ + variable "additional_aws_tags" { description = "Additional tags to be applied to AWS resources" type = map(string) default = {} +======= +variable "additional_tags" { + description = "Additional tags to be applied to AWS resources" + type = map(string) + default = { + Owner = "organization_name" + Expires = "Never" + Department = "Engineering" + } + } variable "aws_region" {