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=
Terraform-specific settings and behaviors are declared in which configuration block type?
If a client is currently assigned the following policy, what additional policy can be added to ensure they cannot access the data stored at secret/apps/confidential but still, read all other secrets?
Which of the following commands will remove all secrets at a specific path?
After decrypting data using the transit secrets engine, the plaintext output does not match the plaintext credit card number that you encrypted. Which of the following answers provides a solution?
1. $ vault write transit/decrypt/creditcard\ ciphertext="vault:v1:cZNHVx+sxdMErXRSuDa1q/pz49fXTn1PScKfhf+PIZPvy8xKfkytpwKcbC0fF2U=" \
2.
3. Key Value
4. --- -----
5. plaintext Y3JlZGl0LWNhcmQtbnVtYmVyCg==
What is the default method of authentication after first initializing Vault?
What is the best and easiest way for Terraform to read and write secrets from HashiCorp Vault?
During a terraform apply, a resource is successfully created but eventually fails during provisioning. What happens to the resource?
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
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?
In order to extend Vault beyond a data center or cloud regional boundary, what feature should be used?
You've logged into the Vault CLI and attempted to enable an auth method, but received this error message. What can be done to resolve the error and configure Vault?
Error enabling userpass auth: Post https://127.0.0.1:8200/v1/sys/auth/userpass: http: server gave HTTP response to HTTPS client
What system endpoint can you query to determine which node is the leader of a cluster?
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?
Which of the following Vault policies will allow a Vault client to read a secret stored at secrets/applications/app01/api_key?
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. }
Given the policy below, what would the user be able to access?
1. path "*" {
2. capabilities = ["create", "update", "read", "list", "delete", "sudo"]
3. }
Complete the following sentence:
For the local state, the workspaces are stored directly in a...
Which Terraform command will force a marked resource to be destroyed and recreated on the next apply?
Beyond encryption and decryption of data, which of the following is not a function of the Vault transit secrets engine?
When configuring Vault replication and monitoring its status, you keep seeing something called 'WALs'. What are WALs?
Select all Operating Systems that Terraform is available for. (select five)