Terraform Associate Exam QuestionsBrowse all questions from this exam

Terraform Associate Exam - Question 244


Which of the following methods, used to provision resources into a public cloud, demonstrates the concept of infrastructure as code?

Show Answer
Correct Answer: C

Discussion

14 comments
Sign in to comment
amoyanoOption: B
Jun 30, 2023

you declare your desired config and then Terraform performs a sequence of API calls to your cloud provider. It's not a script with CLI commands.

chaoscreater
May 29, 2024

Wrong. You can use pipelines to execute CLI commands. In fact, you can execute Powershell scripts etc in Terraform itself. The answer can't be B because it's not in code. Question is asking about infrastructure as code.

atiiiiOption: B
Jun 27, 2023

Doesn't B make more sense?

TafMukoOption: B
Jul 16, 2023

B makes more sense

PikopoOption: B
Sep 27, 2023

B is correct in my opinion

Tronko86Option: C
Nov 4, 2023

The method that demonstrates the concept of infrastructure as code when provisioning resources in a public cloud is: C. A script that contains a series of public cloud CLI commands Infrastructure as code (IaC) involves defining and provisioning infrastructure resources using code and scripts. In this case, using a script with CLI commands allows you to automate the provisioning process and manage infrastructure configurations programmatically. It provides the benefits of version control, repeatability, and automation, which are core principles of IaC.

ae07177Option: B
Dec 14, 2023

Correct Answer is B. Hashicorp Documentation Says it's not Step C, so it must be B. IaC Makes Infrastructure More Reliable IaC makes changes idempotent, consistent, repeatable, and predictable. Without IaC, scaling up infrastructure to meet increased demand may require an operator to remotely connect to each machine and then manually provision and configure many servers by executing a series of commands/scripts. https://www.hashicorp.com/blog/infrastructure-as-code-in-a-private-or-public-cloud

Roman_RabodzeyOption: B
Mar 17, 2024

B is correct. For Azure Cloud, you provide an API version of a resource you are going to deploy.

Oleg_golOption: C
May 6, 2023

C. A script that contains a series of public cloud CLI commands

VSMuOption: C
Jul 21, 2023

I would answer C because script is a code in a file ( like bash script) that can be executed multiple times. It can be pushed to a source control repo and can be versioned. Calling commands directly whether they are through CLI, APIs or through Console cannot be repeated like a script.

seifsklOption: C
Jul 24, 2023

The correct answer is C. The idea behind Infrastructure as Code (IaC) is to write and execute code to define, deploy, and update infrastructure. If that infrastructure code is written in a high-level language, then it can be version controlled and audited, which has benefits for traditional software development practices, such as code review, continuous integration, and automated testing. Option C, where a script contains a series of public cloud CLI commands, best fits this concept. This script can be version controlled, reviewed, and executed consistently across environments, adhering to the principles of IaC. The other options are manual methods that do not adhere to the principles of IaC. They do not support versioning or auditing, are error-prone, and can't ensure consistency across multiple deployments.

lotfi50Option: C
Jul 24, 2023

C. A script that contains a series of public cloud CLI commands

iamabhiOption: C
Mar 4, 2024

Selected Answer: C The concept of infrastructure as code (IaC) is to define and manage infrastructure using code, rather than manual processes or GUI tools. A script that contains a series of public cloud CLI commands is an example of IaC, because it uses code to provision resources into a public cloud. The other options are not examples of IaC, because they involve manual or interactive actions, such as running curl commands, sending REST requests, or entering commands into a console.Reference= [Introduction to Infrastructure as Code with Terraform] and [Infrastructure as Code]

TheShantymanOption: C
May 31, 2024

C is correct. It is the only option that persists the commands being run so that they can be re-used again later. All other options will need to be manually executed again if you wanted to recreate the infra config.

8876ca1Option: C
Jun 18, 2024

C. A script that contains a series of public cloud CLI commands: This is correct. A script (e.g., using Bash, PowerShell, or another scripting language) that automates the provisioning of resources aligns with the principles of IaC. It is automated, repeatable, and can be version-controlled. Atte ChatGPT 4o