child_accounts.tf 296 B

123456789101112
  1. # Run the child account module for each additional profile
  2. module "child-monkeybox-test1" {
  3. source = "./child_accounts"
  4. providers = {
  5. aws = "aws.monkeybox-test1-us-east-2"
  6. aws.fcm-security-account = "aws"
  7. }
  8. security_account = "${data.aws_caller_identity.current.account_id}"
  9. }