What information does the public Terraform Module Registry automatically expose about published modules?

What information does the public Terraform Module Registry automatically expose about published modules?A . Required input variablesB . Optional inputs variables and default valuesC . OutputsD . All of the aboveE . None of the aboveView AnswerAnswer: E Explanation: Reference: https://www.terraform.io/docs/registry/modules/publish.html

August 26, 2021 No Comments READ MORE +

Terraform requires the Go runtime as a prerequisite for installation.

Terraform requires the Go runtime as a prerequisite for installation.A . TrueB . FalseView AnswerAnswer: B Explanation: Reference: https://www.terraform.io/docs/extend/guides/v1-upgrade-guide.html

August 26, 2021 No Comments READ MORE +

What value does the Terraform Cloud/Terraform Enterprise private module registry provide over the public Terraform Module Registry?

What value does the Terraform Cloud/Terraform Enterprise private module registry provide over the public Terraform Module Registry?A . The ability to share modules with public Terraform users and members of Terraform Enterprise OrganizationsB . The ability to tag modules by version or releaseC . The ability to restrict modules to...

August 26, 2021 No Comments READ MORE +

A Terraform local value can reference other Terraform local values.

A Terraform local value can reference other Terraform local values.A . TrueB . FalseView AnswerAnswer: A

August 26, 2021 No Comments READ MORE +

Which of the following is the correct way to pass the value in the variable num_servers into a module with the input servers?

Which of the following is the correct way to pass the value in the variable num_servers into a module with the input servers?A . servers = num_serversB . servers = variable.num_serversC . servers = var(num_servers)D . servers = var.num_serversView AnswerAnswer: A

August 26, 2021 No Comments READ MORE +

How can you trigger a run in a Terraform Cloud workspace that is connected to a Version Control System (VCS) repository?

How can you trigger a run in a Terraform Cloud workspace that is connected to a Version Control System (VCS) repository?A . Only Terraform Cloud organization owners can set workspace variables on VCS connected workspacesB . Commit a change to the VCS working directory and branch that the Terraform Cloud...

August 26, 2021 No Comments READ MORE +

A terraform apply can not _________ infrastructure.

A terraform apply can not _________ infrastructure.A . changeB . destroyC . provisionD . importView AnswerAnswer: A

August 26, 2021 1 Comment READ MORE +

Module variable assignments are inherited from the parent module and do not need to be explicitly set.

Module variable assignments are inherited from the parent module and do not need to be explicitly set.A . TrueB . FalseView AnswerAnswer: B

August 25, 2021 No Comments READ MORE +

If a module declares a variable with a default, that variable must also be defined within the module.

If a module declares a variable with a default, that variable must also be defined within the module.A . TrueB . FalseView AnswerAnswer: B

August 24, 2021 No Comments READ MORE +

How can you do this safely?

You’re building a CI/CD (continuous integration/ continuous delivery) pipeline and need to inject sensitive variables into your Terraform run. How can you do this safely?A . Pass variables to Terraform with a Cvar flagB . Copy the sensitive variables into your Terraform codeC . Store the sensitive variables in a...

August 24, 2021 No Comments READ MORE +