What is the default method of authentication after first initializing Vault?
A. GitHub
B. AppRole
C. Admin account
D. Tokens
E. Userpass
F. TLS certificates
After a client has authenticated, what security feature is used to make subsequent calls?
A. key shard
B. ldap
C. pgp
D. token
E. listener
F. path
After logging into the Vault UI, a user complains that they cannot enable Replication. Why would the replication configuration be missing?
A. replication wasn't configured in the Vault configuration file
B. replication hasn't been enabled
C. Vault is running an open-source version
D. replication configuration isn't available in the UI
True or False:
Similar to how Vault works with databases and cloud providers, the Active Directory secrets engine
dynamically generates the account and password for the requesting Vault client.
A. False
B. True
After running into issues with Terraform, you need to enable verbose logging to assist with troubleshooting the error. Which of the following values provides the MOST verbose logging?
A. ERROR
B. INFO
C. DEBUG
D. WARN
E. TRACE
In the following code snippet, the block type is identified by which string?
1.
resource "aws_instance" "db" {
2.
ami = "ami-123456"
3.
instance_type = "t2.micro"
4.
}
A. "db"
B. resource
C. "aws_instance"
D. instance_type
Complete the following sentence:
For the local state, the workspaces are stored directly in a...
A. a file called terraform.tfstate
B. directory called terraform.workspaces.tfstate
C. directory called terraform.tfstate.d
D. a file called terraform.tfstate.backup
Which of the following terraform subcommands could be used to remove the lock on the state for the current configuration?
A. unlock
B. Removing the lock on a state file is not possible
C. force-unlock
D. state-unlock
What is the result of the following terraform function call? lookup({a="hello", b="goodbye"}, "c", "what?")
A. goodbye
B. hello
C. what?
D. c