HashiCorp Terraform-Associate-004 - HashiCorp Certified: Terraform Associate (004) (HCTA0-004)
Total 359 questions
Exhibit:
provider " aws " { region = " us-east-1 " }
provider " aws " { region = " us-west-2 " }
You need to deploy resources into two different AWS regions in the same Terraform configuration using the provider blocks shown in the exhibit. What do you need to add to the provider configuration to deploy a resource to the us-west-2 AWS region?
When you run terraform apply, the Terraform CLI will print output values from both the root module and any child modules.
You have a Terraform configuration that defines a single virtual machine with no references to it, You have run terraform apply to create the resource, and then removed the resource definition from your Terraform configuration file.
What will happen you run terraform apply in the working directory again?
terraform plan updates your state file.
You cannot install third party plugins using terraform init.
Which backend does the Terraform CLI use by default?
When do you need to explicitly execute Terraform in refresh-only mode?
Which features do HCP Terraform workspaces provide that are not available in Terraform Community Edition? (Pick the 3 correct responses below.)
Which of these commands makes your code more human readable?
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.
