New optional variable for defining additional tags to apply to all AWS resources created for the DetectionLab environment

This commit is contained in:
Chad Roberts
2020-06-25 13:19:40 -07:00
parent d337c57b25
commit b673d80613
3 changed files with 26 additions and 12 deletions

View File

@@ -6,6 +6,12 @@ variable "profile" {
default = "terraform"
}
variable "custom-tags" {
type = map(string)
description = "Optional mapping for additional tags to apply to all related AWS resources"
default = {}
}
variable "tag_prefix" {
description = "Optional string to prefix at the front of instance names in case you need to run multiple DetectionLab environments in the same AWS account"
default = ""