A company uses AWS CloudFormation StackSets to manage infrastructure deployments across 50 production accounts and 1 staging account in an AWS Organization. The Solutions Architect needs to design a deployment strategy that updates the stacks in these accounts. The strategy must meet the following requirements:
- The stack update must be applied to the staging account and verified successfully before any production accounts are updated.
- In production, updates must be deployed to the us-east-1 Region first, and must only proceed to the eu-west-1 Region if the deployment in us-east-1 is completely successful.
- Within each Region, the deployment must update a maximum of 10 production accounts concurrently.
- If deployments fail in more than 2 production accounts in a single Region, the deployment operation for that Region must immediately stop, and the stack set must roll back.
Which of the following actions should the Solutions Architect take to meet these requirements? (Select TWO.)
- Deploy the CloudFormation template to the staging account first. Once verified, execute the StackSet update operation targeting the production accounts with the RegionConcurrencyType parameter set to SEQUENTIAL and the RegionOrder parameter set to ['us-east-1', 'eu-west-1'].Answer
- Configure the StackSet update operation preferences for the production accounts with the MaxConcurrentCount parameter set to 10 and the FailureToleranceCount parameter set to 2.Answer
- CConfigure a single StackSet targeting an organizational unit (OU) that contains both the staging and production accounts, and set the MaxConcurrentPercentage parameter to 2% to ensure staging is updated first.
- DConfigure the production StackSet update operation preferences with the RegionConcurrencyType parameter set to PARALLEL and set the RegionOrder parameter to ['us-east-1', 'eu-west-1'] to allow concurrent deployment across Regions.
- EConfigure the production StackSet update operation preferences with the FailureToleranceCount parameter set to 0 to trigger immediate rollback upon any single account deployment failure.