Skip to content

Commit

Permalink
add aws_cloudformation_stack_set_instance to aws org onboarding docs (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
chkp-elisha authored Jul 9, 2024
1 parent dc176d0 commit 4b96e7d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion website/docs/r/aws_organization_onboarding.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,22 @@ resource "aws_cloudformation_stack_set" "example_stack_set" {
parameters = {
ExternalId = data.dome9_aws_organization_onboarding_member_account_configuration.example_member_account_configuration.external_id
}
capabilities = ["CAPABILITY_IAM"]
capabilities = ["CAPABILITY_NAMED_IAM"]
permission_model = "SERVICE_MANAGED"
auto_deployment {
enabled = true
retain_stacks_on_account_removal = false
}
}
resource "aws_cloudformation_stack_set_instance" "example" {
region = "AWS-REGION"
stack_set_name = aws_cloudformation_stack_set.example_stack_set.name
deployment_targets {
organizational_unit_ids = ["AWS-OU-ID"]
}
}
resource "dome9_aws_organization_onboarding" "test" {
Expand Down

0 comments on commit 4b96e7d

Please sign in to comment.