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: A Explanation: Reference: https://secrethub.io/blog/secret-management-for-terraform/
Which flag would you add to terraform plan to save the execution plan to a file?
CORRECT TEXT FILL BLANK Which flag would you add to terraform plan to save the execution plan to a file? 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: -out=FILENAME
What value does the Terraform Cloud/Terraform Enterprise private module registry provide over the public Terraform Module Registry?
What value does the Terraform Cloud/Terraform Enterprise private module registry provide over the public Terraform Module Registry?A . The ability to share modules with public Terraform users and members of Terraform Enterprise OrganizationsB . The ability to tag modules by version or releaseC . The ability to restrict modules to...
A Terraform local value can reference other Terraform local values.
A Terraform local value can reference other Terraform local values.A . TrueB . FalseView AnswerAnswer: A
Terraform can only manage resource dependencies if you set them explicitly with the depends_on argument.
Terraform can only manage resource dependencies if you set them explicitly with the depends_on argument.A . TrueB . FalseView AnswerAnswer: A
Which of these is the best practice to protect sensitive values in state files?
Which of these is the best practice to protect sensitive values in state files?A . BlockchainB . Secure Sockets Layer (SSL)C . Enhanced remote backendsD . Signed Terraform providersView AnswerAnswer: C Explanation: Use of remote backends and especially the availability of Terraform Cloud, there are now a variety of backends...
What must you do to pass the value to a child module in the configuration?
You have declared an input variable called environment in your parent module. What must you do to pass the value to a child module in the configuration?A . Add node_count = var.node_countB . Declare the variable in a terraform.tfvars fileC . Declare a node_count input variable for child moduleD ....
When does terraform apply reflect changes in the cloud environment?
When does terraform apply reflect changes in the cloud environment?A . ImmediatelyB . However long it takes the resource provider to fulfill the requestC . After updating the state fileD . Based on the value provided to the -refresh command line argumentE . None of the aboveView AnswerAnswer: E
What is the provider for this fictitious resource?
What is the provider for this fictitious resource? A . vpcB . mainC . awsD . testView AnswerAnswer: C Explanation: Reference: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html
Which of the following is not a key principle of infrastructure as code?
Which of the following is not a key principle of infrastructure as code?A . Versioned infrastructureB . Golden imagesC . IdempotenceD . Self-describing infrastructureView AnswerAnswer: A,B,D Explanation: Reference: https://docs.microsoft.com/en-us/azure/devops/learn/what-is-infrastructure-as-code#:~:text=Idempotence%20is%20a%20principle%20of,of%20the%20environment's%20 starting%20state.