Which option can not be used to keep secrets out of Terraform configuration files?
Which option can not be used to keep secrets out of Terraform configuration files?A . A Terraform providerB . Environment variablesC . A -var flagD . secure stringView AnswerAnswer: C Explanation: Reference: https://secrethub.io/blog/secret-management-for-terraform/
What is not processed when running a terraform refresh?
What is not processed when running a terraform refresh?A . State fileB . Configuration fileC . CredentialsD . Cloud providerView AnswerAnswer: C,D Explanation: Reference: https://www.terraform.io/docs/cli/commands/refresh.html
Which task does terraform init not perform?
Which task does terraform init not perform?A . Sources all providers present in the configuration and ensures they are downloaded and available locallyB . Connects to the backendC . Sources any modules and copies the configuration locallyD . Validates all required variables are presentView AnswerAnswer: D Explanation: Reference: https://www.terraform.io/docs/cli/commands/init.html
Terraform can run on Windows or Linux, but it requires a Server version of the Windows operating system.
Terraform can run on Windows or Linux, but it requires a Server version of the Windows operating system.A . TrueB . FalseView AnswerAnswer: A Explanation: Reference: https://cloud.google.com/kubernetes-engine/docs/how-to/creating-a-cluster-windows
What do you do next to make your infrastructure match your configuration?
You just scaled your VM infrastructure and realized you set the count variable to the wrong value. You correct the value and save your change. What do you do next to make your infrastructure match your configuration?A . Run an apply and confirm the planned changesB . Inspect your Terraform...
Which two steps are required to provision new infrastructure in the Terraform workflow? (Choose two.)
Which two steps are required to provision new infrastructure in the Terraform workflow? (Choose two.)A . DestroyB . ApplyC . ImportD . InitE . ValidateView AnswerAnswer: B,D Explanation: Reference: https://www.terraform.io/guides/core-workflow.html
What is the workflow for deploying new infrastructure with Terraform?
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 infrastructureB . Write a Terraform configuration, run terraform show to view proposed changes, and terraform apply to create new...
Which provisioner invokes a process on the resource created by Terraform?
Which provisioner invokes a process on the resource created by Terraform?A . remote-execB . null-execC . local-execD . fileView AnswerAnswer: A Explanation: The remote-exec provisioner invokes a script on a remote resource after it is created. Reference: https://www.terraform.io/docs/language/resources/provisioners/remote-exec.html
What is the name of the default file where Terraform stores the state?
CORRECT TEXT FILL BLANK What is the name of the default file where Terraform stores the state? Type your answer in the field provided. The text field is not case-sensitive and all variations of the correct answer are accepted.View AnswerAnswer: Terraform.tfstate
A Terraform provider is not responsible for:
A Terraform provider is not responsible for:A . Understanding API interactions with some serviceB . Provisioning infrastructure in multiple cloudsC . Exposing resources and data sources based on an APID . Managing actions to take based on resource differencesView AnswerAnswer: D