Which of the following vault lease operations uses a lease _ id as an argument? Choose two correct answers.
Which of the following are true about Vault policies?
Pick the 2 correct responses below.
Assuming default configurations, which of the following operations require a threshold of key shares to perform? (Select three)
True or False? Although AppRole is designed for machines, humans can use it to authenticate to Vault if you wish.
Which of the following tokens are representative of a batch token? (Select two)
What command would you use to enable the Kubernetes secrets engine at the path of /k8s-cluster?
Which of the following storage backends support high availability? (Select four)
After setting up a new HashiCorp Vault server with the default configurations, which method can be used to unseal Vault?
You need to create a limited-privileged token that isn’t impacted by the TTL of its parent. What type of token should you create?
True or False? Once the lease for a dynamic secret has expired, Vault revokes the credentials on the backend platform for which they were created (i.e., database, AWS, Kubernetes).
Jarrad is an AWS engineer and has provisioned a new EC2 instance running MySQL since his application requires a specific MySQL version. He wants to integrate Vault into his workflow but is new to Vault. What secrets engine should Jarrad use to integrate this new database running in AWS?
You have ciphertext stored in an Amazon S3 bucket encrypted by the key named prod-customer. Will Vault decrypt this data with the command vault write transit/decrypt/prod-customer ciphertext= " vault:v4:Xa1f9FIJtn13em/Wb7QCsXsU/kCOn7... " given this output?
$ vault read transit/keys/prod-customer
Key Value
--- -----
...
keys map[4:1549347108 5:1549347109 6:1549347110]
latest_version 6
min_available_version 0
min_decryption_version 4
min_encryption_version 0
Will Vault decrypt this data for you by running the following command?
$ vault write transit/decrypt/prod-customer ciphertext= " vault:v4:Xa1f9FIJtn13em/Wb7QCsXsU/kCOn7... "
You have TBs of data encrypted by Vault stored in a database and are worried about Vault becoming unavailable and not being able to decrypt the data. Is it possible to export the encryption key to store it somewhere else in the event Vault becomes unavailable?
Kyle enabled the database secrets engine for dynamic credentials. Amy, the senior DBA, accidentally deleted the database users created by Vault, disrupting client applications. How can Kyle manually remove the leases in Vault?
What occurs when a Vault cluster cannot maintain a quorum while using the Integrated Storage backend?
A DevOps engineer has set up LDAP and GitHub auth methods. The engineer must ensure user Sarah, who authenticates via either method, has consistent access permissions. Which approach correctly describes how to achieve this in Vault?
Which of the following are benefits of using the Vault Secrets Operator (VSO)? (Select three)
Which of the following is not an action associated with the Transit secrets engine when interacting with data?
Which statement best explains the role and usage of storage backends in HashiCorp Vault?
Which of the following best describes the function of the Vault Secrets Operator in a Kubernetes environment?
True or False? To prepare for day-to-day operations, the root token should be safely saved outside of Vault in order to administer Vault.
Which two interfaces automatically assume the token for subsequent requests after successfully authenticating? (Select two)
Which of the following statements are true about HCP Vault Dedicated? (Select three)
Which of the following unseal options can automatically unseal Vault upon the start of the Vault service? (Select four)
An application requires a specific key/value pair to be updated in order to process a batch job. The value should be either " true " or " false. " However, when developers have been updating the value, sometimes they mistype the value or capitalize the value, causing the batch job not to run. What feature of a Vault policy can be used to restrict entry to the required values?
Holly has discovered that a highly privileged dynamic credential with a very long lease time was created, which could negatively impact the organization’s security. What command can Holly use to invalidate the credential so it can’t be used without affecting other credentials?
An application is trying to use a dynamic secret in which the lease has expired. What can be done in order for the application to successfully request data from Vault?
True or False? After initializing Vault or restarting the Vault service, each individual node in the cluster needs to be unsealed.
When generating a dynamic secret, what value is returned that a user can use to renew or revoke the lease?
True or False? The command vault lease revoke -prefix aws/ will revoke all leases associated with the secret engine mounted at /aws.
Without logging into another interface, what feature can Chad use to execute a simple CLI command to enable a new secrets engine?

You need to connect to and manage a new HCP Vault cluster using the Vault CLI on your laptop. What environment variables should you set to establish connectivity?
You have enabled the Transit secrets engine and want to start encrypting data to store in Azure Blob storage. What is the next step that needs to be completed before you can encrypt data? (Select two)
Your supervisor has requested that you log into Vault and update a policy for one of the development teams. You successfully authenticated to Vault via OIDC but do not see a way to manage the Vault policies. Why are you unable to manage policies in the Vault UI?

A developer team requests integration of their legacy application with Vault to encrypt and decrypt data for a backend database. They cannot modify the application for Vault authentication. What is the best way to achieve this integration?
You are planning the deployment of your first Vault cluster and have decided to use Integrated Storage as the storage backend. Where do you configure the storage backend to be used by Vault?
A security architect is designing a solution to address the " Secret Zero " problem for a Kubernetes-based application that needs to authenticate to HashiCorp Vault. Which approach correctly leverages Vault features to solve this challenge?
Which core component of Vault can store, generate, or encrypt data for organizations?
Your co-worker has asked you to perform certain operations in Vault and has provided you with a token accessor (not the token itself). What Vault operations would you be allowed to perform using only the provided accessor? (Select three)
Sara uses the Vault CLI for administrative tasks on the production cluster. However, she encounters permission-denied errors when making changes and needs to check which policies are attached to her token to view and adjust permissions. What command can she run on the Vault node to see the attached policies?
Your organization recently suffered a security breach on a specific application, and the security response team believes that MySQL database credentials were likely obtained during the event. The application generated the credentials using the database secrets engine in Vault mounted at the path database/. How can you quickly revoke all of the secrets generated by this secrets engine?
True or False? Performing a rekey operation using the vault operator rekey command creates new unseal/recovery keys as well as a new root key?
You have multiple Vault clusters in your environment, one for test and one for production. You have the CLI installed on your local machine and need to target the production cluster to make configuration changes. What environment variable can you set to target the production cluster?
To protect the sensitive data stored in Vault, what key is used to encrypt the data before it is written to the storage backend?
True or False? After rotating a transit encryption key, all data encrypted with the previous version must be rewrapped or re-encrypted with the new key.
Frapps, Inc. is a coffee startup specializing in frozen caffeinated beverages. Their new customer loyalty web app uses Vault to store sensitive information, choosing Integrated Storage for its benefits. Select the benefits the organization would see by using Integrated Storage over other storage backends (Select four)
Which of the following capabilities can be used when writing a Vault policy? (Select four)
A large organization uses Vault for various use cases with multiple auth methods enabled. A user can authenticate via LDAP, OIDC, or a local userpass account, but they receive different policies for each method and often need to log out and back in for different actions. What can be configured in Vault to ensure users have consistent policies regardless of their authentication method?
A Fintech company is using Vault to store its static long-lived credentials so automated processes can quickly retrieve secrets. A user needs to add a new static secret for a new automated job. What CLI commands can be used to store a new static credential? (Select two)
You have enabled the Transit secrets engine on your Vault cluster to provide an " encryption as a service " service as your team develops new applications. What is a prime use case for the Transit secrets engine?
Given the following policy, which command below would not result in a permission denied error (select two)?
path " secret/* " { capabilities = [ " create " , " update " ] allowed_parameters = { " student " = [ " steve " , " frank " , " jamie " , " susan " , " gerry " , " damien " ] } }
path " secret/apps/* " { capabilities = [ " read " ] }
path " secret/apps/results " { capabilities = [ " deny " ] }
Your organization audited an essential application and found it isn’t securely storing data. For added security, auditors recommended encrypting all data before storing it in a backend database, and the application server should not store encryption keys locally. Which secrets engine meets these requirements?
Your Azure Subscription ID is stored in Vault and you need to retrieve it via Vault API for an automated job. The Subscription ID is stored at secret/cloud/azure/subscription. The secret is stored on a KV Version 2 secrets engine. What curl command below would successfully retrieve the latest version of the secret?
True or False? Once you create a KV v1 secrets engine and place data in it, there is no way to modify the mount to include the features of a KV v2 secrets engine.
What command would have created the token displayed below?
$ vault token lookup hvs.nNeZ2I64ALCxuO7dqQEJGPrO
Key: policies Value: [default dev], num_uses: 5, ttl: 767h59m49s
Key Value
--- -----
accessor mfvaVMFgOcXHIeqlRasroSOn
creation_time 1604610457
creation_ttl 768h
display_name token
entity_id n/a
expire_time 2024-12-07T16:07:37.7540672-05:00
explicit_max_ttl 0s
id hvs.nNeZ2I64ALCxuO7dqQEJGPrO
issue_time 2024-11-05T16:07:37.7540672-05:00
meta < nil >
num_uses 5
orphan false
path auth/token/create
policies [default dev]
renewable true
ttl 767h59m49s
type service
How long does the Transit secrets engine store the resulting ciphertext by default?
You want to integrate a third-party application to retrieve credentials from the HashiCorp Vault API. How can you accomplish this without having direct access to the source code?
You are deploying Vault in a local data center, but want to be sure you have a secondary Vault 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?
Jason has enabled the userpass auth method at the path users/. What path would Jason and other Vault operators use to interact with this new auth method?
Which of the following token attributes can be used to renew a token in Vault (select two)?
Which scenario most strongly indicates a need to run a self-hosted Vault cluster instead of using HCP Vault Dedicated?
In regards to the Transit secrets engine, which of the following is true given the following command and output (select three):
$ vault write encryption/encrypt/creditcard plaintext=$(base64 < < < " 1234 5678 9101 1121 " )
Key: ciphertext Value: vault:v3:cZNHVx+sxdMErXRSuDa1q/pz49fXTn1PScKfhf+PIZPvy8xKfkytpwKcbC0fF2U=
During a service outage, you must ensure all current tokens and leases are copied to another Vault cluster for failover so applications don’t need to authenticate. How can you accomplish this?
Which of the following are accurate statements regarding the use of a KV v2 secrets engine (select three)?
When configuring Vault replication and monitoring its status, you keep seeing something called ' WALs ' . What are WALs?
Based on the screenshot below, how many auth methods have been enabled on this Vault instance?

From the options below, select the benefits of using the PKI (x.509 certificates) secrets engine (select three):
How can Vault be used to programmatically obtain a generated code for MFA, somewhat similar to Google Authenticator?
Which of the following is NOT a valid way in which a lease can be revoked in Vault?
You’ve hit the URL for the Vault UI, but you’re presented with this screen. Why doesn’t Vault present you with a way to log in?

As a best practice, the root token should be stored in which of the following ways?
Your DevOps team would like to provision VMs in GCP via a CICD pipeline. They would like to integrate Vault to protect the credentials used by the tool. Which secrets engine would you recommend?
Two screenshots are shown in the exhibit.
You expect the ACL Policies menu to be shown as seen in Image 1. Instead, the ACL Policies menu is not displayed, as in Image 2.
Why would this menu not be displayed?
A system starts up 1000+ containers, all requiring connection to Vault upon its initial setup.
Which strategy will reduce I/O traffic to the storage backend?
A Vault cluster’s listener configuration is shown in the exhibit.
Given the configuration displayed, what VAULT_ADDR environment variable value would target this cluster?
Exhibit:
listener " tcp " { address = " 10.0.0.50:8200 " tls_disable = true }
HCP Vault Dedicated automatically enables cross-region disaster recovery replication.
A user previously successfully authenticated to Vault via AppRole. Now, when they try to authenticate to Vault via AppRole, they report a 400 error.
You perform a read on the role and see the output displayed in the exhibit.
What is preventing the application from using the SecretID?
Exhibit:
vault read auth/approle/role/team-9-cicd
bind_secret_id true
local_secret_ids false
secret_id_bound_cidrs < nil >
secret_id_num_uses 10
secret_id_ttl 0s
token_bound_cidrs []
token_explicit_max_ttl 5h
token_max_ttl 4h
token_no_default_policy false
token_num_uses 10
token_period 0s
token_policies [team9]
token_ttl 1h
token_type default
Where do you define the Namespace to log into using the Vault Ul?
To answer this question
Use your mouse to click on the screenshot in the location described above. An arrow indicator will mark where you have clicked. Click the " Answer " button once you have positioned the arrow to answer the question. You may need to scroll down to see the entire screenshot.

What command creates a secret with the key " my-password " and the value " 53cr3t " at path " my-secrets " within the KV secrets engine mounted at " secret " ?