A public-works team must rebuild the same multi-resource VPC, security groups, and load balancer stack the same way every quarter. Which approach best supports that repeatable provisioning?
Select an answer to reveal the explanation.
Short Explanation
If you have to rebuild the same city block of resources every quarter, write the blueprint once—infrastructure as code like CloudFormation—rather than clicking through the console from memory.
Full Explanation
Infrastructure as code (IaC) tools such as AWS CloudFormation define resources in templates so environments can be provisioned repeatably and consistently. One-time console clicks and screenshot runbooks do not scale as reliable sources of truth for identical multi-resource stacks. SES sends email and does not provision VPC topology. Prefer IaC when repeatability is the goal.