HashiCorp Terraform-Associate-003 - HashiCorp Certified: Terraform Associate (003) (HCTA0-003)
Total 253 questions
Which of the following is not true of Terraform providers?
You modified your Terraform configuration to fix a typo in the resource ID by renaming it from photoes to photos. What configuration will you add to update the resource ID in state without destroying the existing resource?
Original configuration:
resource "aws_s3_bucket" "photoes" {
bucket_prefix = "images"
}
Updated configuration:
resource "aws_s3_bucket" "photos" {
bucket_prefix = "images"
}
One remote backend configuration always maps to a single remote workspace.
You have a simple Terraform configuration containing one virtual machine (VM) in a cloud provider. You run terraform apply and the VM is created successfully. What will happen if you terraform apply again immediately afterward without changing any Terraform code?
Terraformrequiresthe Go runtime as a prerequisite for installation.
Which backend does the Terraform CU use by default?
Which of the following should you add in the required_providers block to define a provider version constraint?
What does terraform import do?
If you manually destroy infrastructure, what is the best practice reflecting this change in Terraform?
How do you specify a module’s version when publishing it to the public terraform Module Registry?
