When architecting a Vault replication configuration, why should you never terminate TLS on a front-end load balancer?
When registering a plugin with Vault, where would you configure the location where the binaries are located in order for Vault to properly register the plugin?
Given the Terraform configuration below, in which order will the resources be created?
1. resource "aws_instance" "web_server" {
2. ami = "i-abdce12345"
3. instance_type = "t2.micro"
4. }
5. resource "aws_eip" "web_server_ip" {
6. vpc = true
7. instance = aws_instance.web_server.id
8. }
True or False? Each Terraform workspace uses its own state file to manage the infrastructure associated with that particular workspace.
Which of the following best describes the default local backend?
Which is not a capability that can be used when writing a Vault policy?
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)
Terraform has detailed logs which can be enabled by setting the _________ environmental variable.
In the example below, the depends_on argument creates what type of dependency?
1. esource "aws_instance" "example" {
2. ami = "ami-2757f631"
3. instance_type = "t2.micro"
4. depends_on = [aws_s3_bucket.company_data]
5. }
What does the following API request return?
1. $ curl \
2. --header "X-Vault-Token: ..." \
3. --request POST \
4. --data @payload.json \
5. http://127.0.0.1:8200/v1/sys/tools/random/164