True or False? When using the Terraform provider for Vault, the tight integration between these HashiCorp tools provides the ability to mask secrets in the terraform plan and state files.
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. }
When using providers that require the retrieval of data, such as the HashiCorp Vault provider, in what phase does Terraform actually retrieve the data required?
You are deploying Vault in a local data center, but want to be sure you have a secondary cluster in the event the primary cluster goes offline. In the secondary data center, you have applications that are running, as they are architected to run active/active. Which type of replication would be best in this scenario?
Why is it a good idea to declare the required version of a provider in a Terraform configuration file?
1. terraform {
2. required_providers {
3. aws = "~> 1.0"
4. }
5. }
Which TCP port does Vault use, by default, for its API and UI?
Which three interfaces can be used to access Vault? (select three)
What is a downside to using a Terraform provider, such as the Vault provider, to interact with sensitive data, such as reading secrets from Vault?
Which of the following Vault policies will allow a Vault client to read a secret stored at secrets/applications/app01/api_key?
Which of the following connection types are supported by the remote-exec provisioner? (select two)