Which of the following is not an advantage of using infrastructure as code operations?
Which of the following is not an advantage of using infrastructure as code operations?
Public cloud console configuration workflows do not represent an advantage of using infrastructure as code (IaC) operations. IaC emphasizes defining, managing, and provisioning infrastructure through code, enabling version control, repeatability, and automation. Console-based configuration is typically a manual process that does not align with the principles of IaC, which aims to automate infrastructure management using code and APIs.
C. Public cloud console configuration workflows. Public cloud console configuration workflows are not an advantage of using infrastructure as code operations, but are instead a separate method of managing cloud infrastructure. Infrastructure as code is focused on defining and managing infrastructure resources through code, using tools like Terraform or CloudFormation. Option A, self-service infrastructure deployment, allows developers and operations teams to provision resources on-demand, without having to request manual intervention from infrastructure teams. Option B, troubleshoot via a Linux diff command, allows teams to identify changes made to infrastructure configurations over time, and compare the differences between different versions of the code. Option D, modify a count parameter to scale resources, allows teams to easily scale resources up or down, without having to manually provision or deprovision resources. Option E, API driven workflows, allows teams to integrate infrastructure management with other automation tools and processes, and build custom workflows to meet their specific needs.
I smell chat-GPT
Exactly! ChatGPT for sure.
Answer is C Regarding B, since infrastructure is defined as code (files) we can use the diff command to check for differences
C looks to me most correct anser. B is strange to, not sure why this is not also wrong, but C looks best anyway.
it is C Public cloud console configuration workflows - typically involve manual steps therefore nothing to do with IaC , certainly not being an advantage of IaC
Selected Answer: C Advantages of using infrastructure as code operations include: Self-service infrastructure deployment Troubleshooting via a Linux diff command API driven workflows Modifying a count parameter to scale resources The use of a public cloud console configuration workflow is not an advantage of using infrastructure as code operations.
This is a Linux shell command and has nothing to do with IaC
it has everything to do with IaC, because you cannot diff the management console UI, but you can easily diff the terraform files, therefore an advantage to use the IaC
B is correct since terraform is used to deploy the infrastructure, not to troubleshoot it
C. Public cloud console configuration workflows: Using console-based configuration in a public cloud does not align with the principles of IaC. IaC promotes defining infrastructure through code rather than using graphical interfaces.