12345678910111213141516171819202122232425262728293031323334 |
- # Run the child account module for each additional profile
- module "child-monkeybox-test1-us-east-2" {
- source = "./child_accounts.all_regions"
- providers = {
- aws = "aws.monkeybox-test1-us-east-2"
- aws.fcm-security-account = "aws"
- }
- security_account = "${data.aws_caller_identity.current.account_id}"
- }
- module "child-monkeybox-test1-us-east-1" {
- source = "./child_accounts.all_regions"
- providers = {
- aws = "aws.monkeybox-test1-us-east-1"
- aws.fcm-security-account = "aws"
- }
- security_account = "${data.aws_caller_identity.current.account_id}"
- }
- module "child-monkeybox-test1-us-west-1" {
- source = "./child_accounts.all_regions"
- providers = {
- aws = "aws.monkeybox-test1-us-west-1"
- aws.fcm-security-account = "aws"
- }
- security_account = "${data.aws_caller_identity.current.account_id}"
- }
|