terraform.aws-baseline-infra/modules/util/aws-region-short/README.md
2022-08-17 17:11:52 +08:00

360 B

aws-region-short module

Module which returns a map of aws regions and their short code.

Example root module

module region-short {
  source = "git::https://xpk.headdesk.me/git/xpk/terraform.aws-baseline-infra//modules/util/aws-region-short"
}

output region-short-code {
  value = lookup(module.region-short.region-map, var.aws-region)
}