Exam Terraform Associate All QuestionsBrowse all questions from this exam
Question 37

Which task does terraform init not perform?

    Correct Answer: D

    D

    Reference:

    https://www.terraform.io/docs/cli/commands/init.html

Discussion
elvancedonzyOption: D

D is correct

SilentHOption: D

Finally ExamTopics got 1 right!

Ni33Option: A

I think A is the correct answer.

Bolgarwow

terraform init not perform

BereOption: D

terraform init performs several initialization steps to prepare your Terraform working directory to be used with Terraform commands. However, it does not validate whether all required variables are present in the configuration or provided through another method. That validation happens during the terraform plan or terraform apply stage. terraform init does: 1. Download and installs the necessary provider plugins. 2. Setup backend for storing state. 3. Download and install modules

campsOption: D

D. Validates all required variables are present. terraform init is a command that initializes a new or existing Terraform configuration. When you run terraform init, Terraform performs several tasks to set up the configuration for use, including: Sources all providers present in the configuration and ensures they are downloaded and available locally Connects to the backend, if one is configured, and performs any necessary setup steps Sources any modules referenced in the configuration and copies their contents locally Initializes the backend configuration and performs any necessary setup steps

Power123Option: C

Ans is C. init doesn't validate all variables are present

bwahdiOption: A

why isn't it A?

FarziWaliMarzi

focus on the key word "not"

flaviu888Option: D

yes, should be D

EltoothOption: D

D is correct answer.

habrosOption: C

Looks like C to me

Oskar_Madin

go and learn first no one need your looks like

DarrylNgOption: D

D is correct. You can test it out in a sample tf file. Init command goes through even if some variable that another resource is referencing is missing.

Ni33Option: A

A is the correct answer.

BurakkoOption: D

terraform plan or apply does "validates all required variables are present"

Ahmad_TerraformOption: D

yes INIT does not validate variables