- Your developers need a simple way to deploy a highly available, auto-scaled web application. What would be the simplest approach with the least management overhead?
A. Create a VPC with one public subnet for ELB. Create two public subnets for the web servers. Create a private subnet for the database. Deploy the ELB and two EC2 instances in the public subnets and a Multi-AZ RDS instance in the private subnet.
B. Create a VPC with two public subnets for the web servers and two private subnets for the databases. Deploy the two EC2 instances in the public subnets and a Multi-AZ RDS instance in the private subnets. Direct the traffic to the application via a Route 53 multi-value answer.
C. Use Elastic Beanstalk to deploy a new application and deploy the code into a new environment.
D. Use a CloudFormation quick-start template to deploy a new application and deploy the...