The Terraform language does not support user-defined functions, and so only the functions built in to the language are available for use.
The Terraform language does not support user-defined functions, and so only the functions built in to the language are available for use.A . FalseB . TrueView AnswerAnswer: B Explanation: https://www.terraform.io/docs/configuration/functions.html
What is the way this type of configuration can be managed easily?
ABC Enterprise has recently tied up with multiple small organizations for exchanging database information. Due to this, the firewall rules are increasing and are more than 100 rules. This is leading firewall configuration file that is difficult to manage . What is the way this type of configuration can be...
You should store secret data in the same version control repository as your Terraform configuration.
You should store secret data in the same version control repository as your Terraform configuration.A . TrueB . FalseView AnswerAnswer: B Explanation: Reference: https://blog.gruntwork.io/a-comprehensive-guide-to-managing-secrets-in-your-terraform-code- 1d586955ace1
When TF_LOG_PATH is set, TF_LOG must be set in order for any logging to be enabled.
When TF_LOG_PATH is set, TF_LOG must be set in order for any logging to be enabled.A . FalseB . TrueView AnswerAnswer: B Explanation: TF_LOG_PATH specifies where the log should persist its output to. Note that even when TF_LOG_PATH is set, TF_LOG must be set in order for any logging to...
A Terraform provisioner must be nested inside a resource configuration block.
A Terraform provisioner must be nested inside a resource configuration block.A . TrueB . FalseView AnswerAnswer: A Explanation: Most provisioners require access to the remote resource via SSH or WinRM, and expect a nested connection block with details about how to connect. Reference: https://www.terraform.io/docs/language/resources/provisioners/connection.html
terraform state subcommands such as list are read-only commands, do read-only commands create state backup files?
terraform state subcommands such as list are read-only commands, do read-only commands create state backup files?A . YesB . NoView AnswerAnswer: B Explanation: Subcommands that are read-only (such as list) do not write any backup files since they aren't modifying the state. All terraform state subcommands that modify the state...
What is the purpose of using the local-exec provisioner? (Select Two)
What is the purpose of using the local-exec provisioner? (Select Two)A . To invoke a local executable.B . Executes a command on the resource to invoke an update to the Terraform state.C . To execute one or more commands on the machine running Terraform.D . Ensures that the resource is...
By default, a defined provisioner is a creation-time provisioner.
By default, a defined provisioner is a creation-time provisioner.A . TrueB . FalseView AnswerAnswer: A Explanation: https://www.terraform.io/docs/provisioners/index.html
Provisioners should only be used as a last resort.
Provisioners should only be used as a last resort.A . FalseB . TrueView AnswerAnswer: B Explanation: Provisioners are a Last Resort Terraform includes the concept of provisioners as a measure of pragmatism, knowing that there will always be certain behaviors that can't be directly represented in Terraform's declarative model. However,...
What of the following approaches needs to be followed in order to select image-4589?
} What of the following approaches needs to be followed in order to select image-4589?A . var.images["us-west-1"]B . var.images[3]C . var.images[2]D . lookup(var.images["us-west-1"]View AnswerAnswer: A