From 4e07795782b26df32de96a1510ba2f1c39fb1d4e Mon Sep 17 00:00:00 2001 From: Noah Kraemer Date: Tue, 29 Aug 2023 16:47:22 -0700 Subject: [PATCH] feat(trust-relationship) Parallelize role creation in stackset --- modules/services/trust-relationship/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/services/trust-relationship/main.tf b/modules/services/trust-relationship/main.tf index d8f9f48..71d4da5 100644 --- a/modules/services/trust-relationship/main.tf +++ b/modules/services/trust-relationship/main.tf @@ -84,4 +84,8 @@ resource "aws_cloudformation_stack_set_instance" "stackset_instance" { deployment_targets { organizational_unit_ids = local.org_units_to_deploy } + operation_preferences { + failure_tolerance_count = 10 + max_concurrent_count = 10 + } }