Which method for sharing Terraform configurations fulfills the following criteria:
1. Keeps the configurations confidential within your organization
2. Support Terraform’s semantic version constrains
3. Provides a browsable directory
Variables declared within a module are accessible outside of the module.
Exhibit:
module " network " {
source = " terraform-google-modules/network/google "
version = " ~ > 11.0 "
}
What version of the source module does Terraform allow with the module block shown in the exhibit?
Where does HashiCorp recommend you store API tokens and other secrets within your team’s Terraform workspaces?
Pick the three correct responses below.
Which statements are true about terraform apply? (Choose TWO correct answers)
What are some benefits of using Sentinel with Terraform Cloud/Terraform Cloud? Choose three correct answers.
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 delete the VM using the cloud provider console, then run terraform apply again without changing any Terraform code?
Module variable assignments are inherited from the parent module and you do not need to explicitly set them.
A senior admin accidentally deleted some of your cloud instances. What will Terraform do when you run terraform apply?
Your root module contains a variable namednum_servers. Which is the correct way to pass its value to a child module with an input namedservers?