Created
April 10, 2023 16:55
-
-
Save tbeyer567/0423ec62bb7ac7a6d5153f298fb17565 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "vault_west" { | |
source = "../" | |
vpc_cidr = "172.31.1.0/24" | |
vpc_name = "vault-west" | |
providers = { | |
aws = aws.us-west-2 | |
} | |
} | |
module "vault_east" { | |
source = "../" | |
vpc_cidr = "172.31.2.0/24" | |
vpc_name = "vault-east" | |
providers = { | |
aws = aws.us-east-1 | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers = { | |
aws = { | |
source = "hashicorp/aws" | |
} | |
} | |
} | |
provider "aws" { | |
alias = "us-west-2" | |
region = "us-west-2" | |
} | |
provider "aws" { | |
alias = "us-east-1" | |
region = "us-east-1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment