How can a ticket-based system slow down infrastructure provisioning and limit the ability to scale? Choose two correct answers.

How can a ticket-based system slow down infrastructure provisioning and limit the ability to scale? Choose two correct answers.A . End-users have to request infrastructure changesB . Ticket based systems generate a full audit trail of the request and fulfillment processC . Users can access catalog of approved resources from...

February 27, 2025 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...

February 27, 2025 No Comments READ MORE +

You can reference a resource created with for_each using a Splat ( *) expression.

You can reference a resource created with for_each using a Splat ( *) expression.A . TrueB . FalseView AnswerAnswer: B Explanation: You cannot reference a resource created with for_each using a splat (*) expression, as it will not work with resources that have non-numeric keys. You need to use a...

February 24, 2025 No Comments READ MORE +

What feature stops multiple users from operating on the Terraform state at the same time?

What feature stops multiple users from operating on the Terraform state at the same time?A . State lockingB . Version controlC . Provider constraintsD . Remote backendsView AnswerAnswer: A Explanation: State locking prevents other users from modifying the state file while a Terraform operation is in progress. This prevents conflicts...

February 21, 2025 No Comments READ MORE +

Which options will produce a list of the IDs?

You have declared a variable called var.list which is a list of objects that all have an attribute id. Which options will produce a list of the IDs? Choose two correct answers.A . [ var.list [ * ] , id ]B . [ for o in var.list: o.Id ]C ....

February 19, 2025 No Comments READ MORE +

Variables declared within a module are accessible outside of the module.

Variables declared within a module are accessible outside of the module.A . TrueB . FalseView AnswerAnswer: B Explanation: Variables declared within a module are only accessible within that module, unless they are explicitly exposed as output values1.

February 18, 2025 No Comments READ MORE +

It is best practice to store secret data in the same version control repository as your Terraform configuration.

It is best practice to store secret data in the same version control repository as your Terraform configuration.A . TrueB . FalseView AnswerAnswer: B Explanation: It is not a best practice to store secret data in the same version control repository as your Terraform configuration, as it could expose your...

February 18, 2025 No Comments READ MORE +

What kind of configuration block will create an infrastructure object with settings specified within the block?

What kind of configuration block will create an infrastructure object with settings specified within the block?A . providerB . stateC . dataD . resourceView AnswerAnswer: D Explanation: This is the kind of configuration block that will create an infrastructure object with settings specified within the block. The other options are...

February 18, 2025 No Comments READ MORE +

What should you do to delete the newly-created VM with Terraform?

You have never used Terraform before and would like to test it out using a shared team account for a cloud provider. The shared team account already contains 15 virtual machines (VM). You develop a Terraform configuration containing one VM. perform terraform apply, and see that your VM was created...

February 16, 2025 No Comments READ MORE +

Terraform variable names are saved in the state file.

Terraform variable names are saved in the state file.A . TrueB . FalseView AnswerAnswer: B Explanation: Terraform variable names are not saved in the state file, only their values are. The state file only stores the attributes of the resources and data sources that are managed by Terraform, not the...

February 15, 2025 No Comments READ MORE +