ExamQuestions.com

Register
Login
AWS Certified DevOps Engineer Professional Exam Questions

Amazon

AWS Certified DevOps Engineer Professional

142 / 500

Question 142:

You need your CI to build AMIs with code pre-installed on the images on every new code push. You need to do this as cheaply as possible. How do you do this?

Answer options:

A.Create a spot instance request to include the maximum price that you are willing to pay per hour per instance just above the spot price as soon as new commits come in, perform all instance configuration and setup, then create an AMI based on the spot instance.
B.Have the CI launch a new on-demand EC2 instance when new commits come in, perform all instance configuration and setup, then create an AMI based on the on-demand instance.
C.Purchase a Light Utilization Reserved Instance to save money on the continuous integration machine.Use these credits whenever you create AMIs on instances.
D.When the CI instance receives commits, attach a new EBS volume to the CI machine. Perform all setup on this EBS volume. So you don’t need a new EC2 instance to create the AMI.