Terraform module to move member accounts to the right organizational units
This is assumed to be a temporary implementation until OU support is added to Terraform
module "organizational-unit-members" {
source = "devops-workflow/organizational-unit-members/aws"
version = "0.0.1"
aws_profile = "master"
account_list = "1111:core 1234:environments 2345:core"
}
Name | Description | Type | Default | Required |
---|---|---|---|---|
account_list | List of member account and organizational units they should be into. Format: {account id}:{ou name} {account id}:{ou name} | string | - | yes |
aws_profile | AWS profile in local credentials file that has rights to master account | string | - | yes |