21 You have recently started a new job at a retailer as an engineer. As part of this new role, you have been tasked with evaluating multiple outages that occurred during peak shopping time during the holiday season. Your investigation found that the team is manually deploying new compute instances and configuring each compute instance manually. This has led to inconsistent configuration between each compute instance.
How would you solve this using infrastructure as code?

A. Implement a ticketing workflow that makes engineers submit a ticket before manually provisioning and configuring a resource

B. Implement a checklist that engineers can follow when configuring compute instances

C. Replace the compute instance type with a larger version to reduce the number of required deployments

D. Implement a provisioning pipeline that deploys infrastructure configurations committed to your version control system following code reviews

22 terraform init initializes a sample main.tf file in the current directory.

A. True

B. False

23 Which two steps are required to provision new infrastructure in the Terraform workflow? (Choose two.)

A. Destroy

B. Apply

C. Import

D. Init

E. Validate

24 Why would you use the terraform taint command?

A. When you want to force Terraform to destroy a resource on the next apply

B. When you want to force Terraform to destroy and recreate a resource on the next apply

C. When you want Terraform to ignore a resource on the next apply

D. When you want Terraform to destroy all the infrastructure in your workspace

25 Terraform requires the Go runtime as a prerequisite for installation.

A. True

B. False