Skip to content

Commit adbf974

Browse files
authored
chore(cloud-bench): adds failure tolerance and max concurrent count (#161)
<!-- Thank you for your contribution! ## Testing your PR You can pinpoint the pr changes as terraform module source with following format ``` source = "github.com/sysdiglabs/terraform-aws-secure-for-cloud//examples/organizational?ref=<BRANCH_NAME>" ``` ## General recommendations Check contribution guidelines at https://github.com/sysdiglabs/terraform-aws-secure-for-cloud/blob/master/CONTRIBUTE.md#contribution-checklist For a cleaner PR make sure you follow these recommendations: - Review modified files and delete small changes that were not intended and maybe slip the commit. - Use Pull Request Drafts for visibility on Work-In-Progress branches and use them on daily mob/pairing for team review - Unless an external revision is desired, in order to validate or gather some feedback, you are free to merge as long as **validation checks are green-lighted** ## Checklist - [ ] If `test/fixtures/*/main.tf` files are modified, update: - [ ] the snippets in the README.md file under root folder. - [ ] the snippets in the README.md file for the corresponding example. - [ ] If `examples` folder are modified, update: - [ ] README.md file with pertinent changes. - [ ] `test/fixtures/*/main.tf` in case the snippet needs modifications. - [ ] If any architectural change has been made, update the diagrams. -->
1 parent 2116955 commit adbf974

File tree

1 file changed

+4
-0
lines changed
  • modules/services/cloud-bench

1 file changed

+4
-0
lines changed

modules/services/cloud-bench/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,8 @@ resource "aws_cloudformation_stack_set_instance" "stackset_instance" {
162162
deployment_targets {
163163
organizational_unit_ids = [for root in data.aws_organizations_organization.org[0].roots : root.id]
164164
}
165+
operation_preferences {
166+
failure_tolerance_count = 100
167+
max_concurrent_count = 5
168+
}
165169
}

0 commit comments

Comments
 (0)