Skip to content

Instantly share code, notes, and snippets.

@lgfa29
Created July 1, 2022 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgfa29/282e034c90265f895d7c919a10668aa8 to your computer and use it in GitHub Desktop.
Save lgfa29/282e034c90265f895d7c919a10668aa8 to your computer and use it in GitHub Desktop.
variable "version" {}
locals {
versions = {
v2 = {
"app.mydomain.com" = "abcd.region.elb.amazonaws.com"
}
v1 = {
"app.mydomain.com" = "xpto.region.elb.amazonaws.com"
}
}
}
resource "aws_route53_route" "routes" {
for_each = local.versions[version]
# ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment