In the example below, where is the value of the DNS record's IP address originating from?
1. resource "aws_route53_record" "www" {
2. zone_id = aws_route53_zone.primary.zone_id
3. name = "www.helloworld.com "
4. type = "A"
5. ttl = "300"
6. records = [module.web_server.instance_ip_addr]
7. }
Which of the following statements best describes the Terraform list(...) type?
What system endpoint can you query to determine which node is the leader of a cluster?
Vault has failed to start. You inspect the log and find the error below. What needs to be changed in order to successfully start Vault?
"Error parsing config.hcl: At 1:12: illegal char"
True or False? Each Terraform workspace uses its own state file to manage the infrastructure associated with that particular workspace.
What could you do with the feature found in the screenshot below? (select two)
The Terraform language supports a number of different syntaxes for comments. Select all that are supported. (select three)
A Vault client who has read access to the path secrets/apps/app1 is having trouble viewing the secret in the user interface (UI) but can access via the API. What can be done to resolve this issue?
When using constraint expressions to signify a version of a provider, which of the following are valid provider versions that satisfy the expression found in the following code snippet: (select two)
1. terraform {
2. required_providers {
3. aws = "~> 1.2.0"
4. }
5. }
When writing the Terraform code, HashiCorp recommends that you use how many spaces between each nesting level?
During a terraform apply, a resource is successfully created but eventually fails during provisioning. What happens to the resource?
Using multi-cloud and provider-agnostic tools provides which of the following benefits? (select two)
Terraform Enterprise (also referred to as pTFE) requires what type of backend database for a clustered deployment?
A user creates three workspaces from the command line - prod, dev, and test. Which of the following commands will the user run to switch to the dev workspace?
In regards to the transit secrets engine, which of the following is true given the following command and output: (select three)
1. $ vault write encryption/encrypt/creditcard plaintext=$(base64 <<< "1234 5678 9101 1121")
2. Key Value
3. --- -----
4. ciphertext vault:v3:cZNHVx+sxdMErXRSuDa1q/pz49fXTn1PScKfhf+PIZPvy8xKfkytpwKcbC0fF2U=
When Vault is sealed, which are the only two options available to a Vault administrator? (select two)
In regards to deploying resources in multi-cloud environments, what are some of the benefits of using Terraform rather than a provider's native tooling? (select three)
When configuring a remote backend in Terraform, it might be a good idea to purposely omit some of the required arguments to ensure secrets and other relevant data are not inadvertently shared with others. What are the ways the remaining configuration can be added to Terraform so it can initialize and communicate with the backend? (select three)
Given the policy below, what would the user be able to access?
1. path "*" {
2. capabilities = ["create", "update", "read", "list", "delete", "sudo"]
3. }
A user has created three workspaces using the command line - prod, dev, and test. The user wants to create a fourth workspace named stage. Which command will the user execute to accomplish this?
Which of the following connection types are supported by the remote-exec provisioner? (select two)
Provider dependencies are created in several different ways. Select the valid provider dependencies from the following list: (select three)