Complete list of current Q & A>> Download HashiCorp Terraform Associate – Quiz 1 / 15 Category: HashiCorp Terraform Associate 1. Which two steps are required to provision new infrastructure in the Terraform workflow? (Choose two.) A. Destroy B. Apply C. Import D. Init E. Validate 2 / 15 Category: HashiCorp Terraform Associate 2. You have provisioned some virtual machines (VMs) on Google Cloud Platform (GCP) using the gcloud command line tool. However, you are standardizing with Terraform and want to manage these VMs using Terraform instead. What are the two things you must do to achieve this? (Choose two.) A. Provision new VMs using Terraform with the same VM names B. Use the terraform import command for the existing VMs C. Write Terraform configuration for the existing VMs D. Run the terraform import-gcp command 3 / 15 Category: HashiCorp Terraform Associate 3. Which of the following is not a valid string function in Terraform? A. split B. join C. slice D. chomp 4 / 15 Category: HashiCorp Terraform Associate 4. What information does the public Terraform Module Registry automatically expose about published modules? A. Required input variables B. Optional inputs variables and default values C. Outputs D. All of the above E. None of the above 5 / 15 Category: HashiCorp Terraform Associate 5. What is not processed when running a terraform refresh? A. State file B. Configuration file C. Credentials D. Cloud provider 6 / 15 Category: HashiCorp Terraform Associate 6. If you manually destroy infrastructure, what is the best practice reflecting this change in Terraform? A. Run terraform refresh B. It will happen automatically C. Manually update the state fire D. Run terraform import 7 / 15 Category: HashiCorp Terraform Associate 7. What is the provider for this fictitious resource? A. vpc B. main C. aws D. test 8 / 15 Category: HashiCorp Terraform Associate 8. Which of the following is not a key principle of infrastructure as code? A. Versioned infrastructure B. Golden images C. Idempotence D. Self-describing infrastructure 9 / 15 Category: HashiCorp Terraform Associate 9. How is the Terraform remote backend different than other state backends such as S3, Consul, etc.? A. It can execute Terraform runs on dedicated infrastructure on premises or in Terraform Cloud B. It doesn't show the output of a terraform apply locally C. It is only available to paying customers D. All of the above 10 / 15 Category: HashiCorp Terraform Associate 10. What is the workflow for deploying new infrastructure with Terraform? A. terraform plan to import the current infrastructure to the state file, make code changes, and terraform apply to update the infrastructure. B. Write a Terraform configuration, run terraform show to view proposed changes, and terraform apply to create new infrastructure. C. terraform import to import the current infrastructure to the state file, make code changes, and terraform apply to update the infrastructure. D. Write a Terraform configuration, run terraform init, run terraform plan to view planned infrastructure changes, and terraform apply to create new infrastructure. 11 / 15 Category: HashiCorp Terraform Associate 11. You run a local-exec provisioner in a null resource called null_resource.run_script and realize that you need to rerun the script. Which of the following commands would you use first? A. terraform taint null_resource.run_script B. terraform apply -target=null_resource.run_script C. terraform validate null_resource.run_script D. terraform plan -target=null_resource.run_script 12 / 15 Category: HashiCorp Terraform Associate 12. Which provisioner invokes a process on the resource created by Terraform? A. remote-exec B. null-exec C. local-exec D. file 13 / 15 Category: HashiCorp Terraform Associate 13. Which of the following is not true of Terraform providers? A. Providers can be written by individuals B. Providers can be maintained by a community of users C. Some providers are maintained by HashiCorp D. Major cloud vendors and non-cloud vendors can write, maintain, or collaborate on Terraform providers E. None of the above 14 / 15 Category: HashiCorp Terraform Associate 14. What command does Terraform require the first time you run it within a configuration directory? A. terraform import B. terraform init C. terraform plan D. terraform workspace 15 / 15 Category: HashiCorp Terraform Associate 15. You have deployed a new webapp with a public IP address on a cloud provider. However, you did not create any outputs for your code. What is the best method to quickly find the IP address of the resource you deployed? A. Run terraform output ip_address to view the result B. In a new folder, use the terraform_remote_state data source to load in the state file, then write an output for each resource that you find the state file C. Run terraform state list to find the name of the resource, then terraform state show to find the attributes including public IP address D. Run terraform destroy then terraform apply and look for the IP address in stdout Your score is 0% Restart quiz Send feedback