Your DevOps team is currently using the local backend for your Terraform configuration. You would like to move to a remote backend to store the state file in a central location. Which of the following backends would not work?
A resource block is shown in the Exhibit section of this page. How would you reference the attribute name of this resource in HCL?
You ate creating a Terraform configuration which needs to make use of multiple providers, one for AWS and one for Datadog. Which of the following provider blocks would allow you to do this?
A)

B)
C)
D)
What value does the Terraform Cloud private registry provide over the public Terraform Module Registry?
While attempting to deploy resources into your cloud provider using Terraform, you begin to see some odd behavior and experience slow responses. In order to troubleshoot you decide to turn on Terraform debugging. Which environment variables must be configured to make Terraform's logging more verbose?
A developer on your team is going lo leaf down an existing deployment managed by Terraform and deploy a new one. However, there is a server resource named aws instant.ubuntu[l] they would like to keep. What command should they use to tell Terraform to stop managing that specific resource?
When you initialize Terraform, where does it cache modules from the public Terraform Registry?
Which provider authentication method prevents credentials from being stored in the state file?
When using multiple configuration of the same Terraform provider, what meta-argument must you include in any non-default provider configurations?
You use a cloud provider account that is shared with other team members. You previously used Terraform to create a load balancer that listens on port 80. After application changes, you updated the Terraform code to change the port to 443.
You run terraform plan and see that the execution plan shows the port changing from 80 to 443 like you intended and step away to grab some coffee.
In the meantime, another team member manually changes the load balancer port to 443 through the cloud provider console before you get back to your desk.
What will happen when you run terraform apply upon returning to your desk?
A resource block is shown in the Exhibit space of this page. What is the Terraform resource name of the resource block?
You want to use API tokens and other secrets within your team's Terraform workspaces. Where does HashiCorp recommend you store these sensitive values? (Pick the 3 correct responses)
You are using a networking module in your Terraform configuration with the name label my-network. In your main configuration you have the following code:
When you run terraform validate, you get the following error:
What must you do to successfully retrieve this value from your networking module?
How does the Terraform cloud integration differ from other state backends such as S3, Consul,etc?
Once you configure a new Terraform backend with a terraform code block, which command(s) should you use to migrate the state file?
You can access state stored with the local backend by using terraform_remote_state data source.
Which of these are benefits of using Sentinel with HCP Terraform/Terraform Cloud? (Pick the 3 correct responses)
Which of the following commands would you use to access all of the attributes and details of a resource managed by Terraform?
A Terraform backend determines how Terraform loads state and stores updates when you execute which command?
What does Terraform not reference when running a terraform apply -refresh-only ?
terraform validate confirms that your infrastructure matches the Terraform state file.
Which of the following should you add in the required_providers block to define a provider version constraint?
Before you can use a new backend or HCP Terraform/Terraform Cloud integration, you must first execute terraform init.
The Terraform binary version and provider versions must match each other in a single configuration.
Which of these ate secure options for storing secrets for connecting to a Terraform remote backend? Choose two correct answers.
In Terraform HCL, an object type of object({name=string, age-number}) would match this value.

Which of the following isnotan advantage of using Infrastructure as Code (IaC) operations?
If a module declares a variable without a default value, you must pass the value of the variable within the module block when you call the module in your configuration.
terraform apply will fail if you have not run terraform plan first to update the plan output.
When should you write Terraform configuration files for existing infrastructure that you want to start managing with Terraform?
What type of information can be found on the Terraform Registry when using published modules?
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 successfully. What should you do to delete the newly-created VM with Terraform?
Which two steps are required to provision new infrastructure in the Terraform workflow? Choose two correct answers.
Module variable assignments are inherited from the parent module and you do not need to explicitly set them.
By default, if you do not define a backend for your configuration, where does Terraform store information about the resources that it manages?
Which of the following can you do with terraform plan? (Pick 2 correct responses)
Which argument can you use toprevent unexpected updatesto a module's configuration when calling Terraform Registry modules?