terraform validate confirms that your infrastructure matches the Terraform state file.
A. True
B. False
When does Sentinel enforce policy logic during a Terraform Cloud run?
A. Before the plan phase
B. During the plan phase
C. Before the apply phase
D. After the apply phase
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
What is the Terraform style convention for indenting a nesting level compared to the one above it?
A. With a tab
B. With two spaces
C. With four spaces
D. With three spaces
_______backends support state locking.
A. All
B. No
C. Some
D. Only local
If you update the version constraint in your Terraform configuration, Terraform will update your lock file the next time you run terraform Init.
A. True
B. False
Which is the best way to specify a tag of v1.0.0 when referencing a module stored in Git (for example.Git::https://example.com/vpc.git)?
A. Append pref=v1.0.0 argument to the source path
B. Add version = "1.0.0" parameter to module block
C. Nothing modules stored on GitHub always default to version 1.0.0
HashiCorp Configuration Language (HCL) supports user-denned functions.
A. True
B. False
How do you specify a module's version when publishing it to the public terraform Module Registry?
A. Configuration it in the module's Terraform code
B. Mention it on the module's configuration page on the Terraform Module Registry
C. The Terraform Module Registry does not support versioning modules
D. Tag a release in the associated repo
You have declared a variable called var.list which is a list of objects that all have an attribute id . Which options will produce a list of the IDs? Choose two correct answers.
A. [ var.list [ * ] , id ]
B. [ for o in var.list : o.Id ]
C. var.list[*].id
D. { for o in var.llst : o => o.id }
Which command add existing resources into Terraform state?
A. Terraform init
B. Terraform plan
C. Terraform refresh
D. Terraform import
E. All of these
When using a remote backend or terraform Cloud integration, where does Terraform save resource sate?
A. In an environment variable
B. On the disk
C. In the remote backend or Terraform Cloud
D. In memory
What does Terraform not reference when running a terraform apply -refresh-only ?
A. State file
B. Credentials
C. Cloud provider
D. Terraform resource definitions in configuration files
Your security team scanned some Terraform workspaces and found secrets stored in plaintext in state files. How can you protect that data?
A. Edit your state file to scrub out the sensitive data
B. Always store your secrets in a secrets.tfvars file
C. Delete the state file every time you run Terraform
D. Store the state in an encrypted backend
You add a new resource to an existing Terraform configuration, but do not update the version constraint in the configuration. The existing and new resources use the same provider. The working contains a .terraform.lock, hc1 file. How will Terraform choose which version of the provider to use?
A. Terraform will use the version recorded in your lock file
B. Terraform will use the latest version of the provider for the new resource and the version recorded in the lock file to manage existing resources
C. Terraform will check your state file to determine the provider version to use
D. Terraform will use the latest version of the provider available at the time you provision your new resource