Practice free →
HomeAWS SysOps Associatecloudcomputingsysopsdeployment › An organisation needs to deploy a new version of…

An organisation needs to deploy a new version of a web app to 100 EC2 instances behind an ALB with the option to roll back automatically on a 5xx alarm. Which combination works BEST?

AManually log in to each of the 100 instances and run `scp`
BDisable CloudWatch alarms during deployment
CAWS CodeDeploy with a blue/green deployment configuration and a CloudWatch alarm tied to the deployment group
DRe-deploy the entire stack to AWS Snowball appliances
Answer & Solution
Correct answer: C. AWS CodeDeploy with a blue/green deployment configuration and a CloudWatch alarm tied to the deployment group
CodeDeploy blue/green + CloudWatch alarm-backed rollback is the canonical safe rollout. Manual SCP doesn't scale; Snowball is offline; disabling alarms removes the rollback signal.
Solve this in the app — AWS SysOps Associate practice & 24k+ MCQs →
Related questions