1234567891011 |
- # Set common variables for the environment. This is automatically pulled in in the root terragrunt.hcl configuration to
- # feed forward to the child modules.
- #
- # NOTE: There is only one copy of this, in the `common/` tree, and the others are symbolic links.
- locals {
- aws_partition = "aws"
- aws_partition_alias = "commercial"
- common_services_account = "471284459109"
- common_profile = "${local.aws_partition == "aws-us-gov" ? "govcloud" : "commercial"}"
- tfstate_region = "us-east-1"
- }
|