v3/terraform/app/variables.tf
2020-10-09 10:54:55 -04:00

12 lines
224 B
HCL

variable "deployment_env" {
type = map(map(string))
}
variable "environment_tag" {
type = string
description = "One of: production, staging, test"
}
locals {
tags = var.deployment_env[var.environment_tag]
}