mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
12 lines
224 B
HCL
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]
|
|
}
|