Summer Sale - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 65percent

Welcome To DumpsPedia

HCVA0-003 Sample Questions Answers

Questions 4

To secure your applications, your organization uses certificates generated by a public CA. However, this strategy has proven expensive and you have to revoke certificates even though they have additional time left. What Vault plugin can be used to quickly generate X.509 certificates to secure your internal applications?

Options:

A.

Identity secrets engine

B.

PKI secrets engine

C.

SSH secrets engine

D.

Transit secrets engine

Buy Now
Questions 5

Your organization is integrating its legacy application with Vault to improve its security. However, you have discovered that the application has issues when the token changes for authentication during testing. What type of token could be used to help alleviate this issue without compromising security?

Options:

A.

Periodic Service Token

B.

Root Token

C.

Orphan Service Token

D.

Batch Token

Buy Now
Questions 6

What of the following features are true about batch tokens in Vault? (Select two)

Options:

A.

Batch tokens are not persisted (written) to storage

B.

Batch tokens can be renewed

C.

Batch tokens are valid across all clusters when using Vault Enterprise replication

D.

Batch tokens can create child tokens

Buy Now
Questions 7

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?

Options:

A.

Enable the SSH secrets engine and instruct the user to obtain credentials using the new secrets engine

B.

Create a new entity and map the aliases from each of the available auth methods

C.

Assign the default policy to the user ' s policy used by each auth method

D.

Provide the user with an AppRole role-id and secret-id for authentication

Buy Now
Questions 8

By default, what methods of authentication does Vault support? (Select four)

Options:

A.

SSH

B.

Kubernetes

C.

VMware

D.

LDAP

E.

AppRole

F.

JWT

Buy Now
Questions 9

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)

Options:

A.

vault kv put kv/training/certification/vault @secrets.txt

B.

vault kv write kv/training/certification/vault key=username value=bryan

C.

vault kv create kv/training/certification/vault @secrets.txt

D.

vault kv put -mount=secret creds passcode=my-long-passcode

Buy Now
Questions 10

You are using the Vault API to test authentication before modifying your CI/CD pipeline to properly authenticate to Vault. You manually authenticate to Vault and receive the response below. Based on the provided options, which of the following are true? (Select four)

    $ curl \

    --request POST \

    --data @payload.json \

    https://vault.krausen.com:8200/v1/auth/userpass/login/bryan.krausen | jq

     

    *******************************************************************************

    ******* RESPONSE BELOW ********************************************************

    *******************************************************************************

     

    {

    " request_id " : " f758e8da-11b6-8341-d404-56f0c370a7fa " ,

    " lease_id " : " " ,

    " renewable " : false,

    " lease_duration " : 0,

    " data " : null,

    " wrap_info " : null,

    " warnings " : null,

    " auth " : {

    " client_token " : " hvs.CbzCNJCVWt63jyzyaJakgDwz " ,

    " accessor " : " rffwXzKFcxvaQi6Vgo8tY4Lt " ,

    " policies " : [

    " training " ,

    " default "

    ],

    " token_policies " : [

    " training " ,

    " default "

    ],

    " metadata " : {

    " username " : " bryan.krausen "

    },

    " lease_duration " : 84600,

    " renewable " : true,

    " entity_id " : " f1795f6a-c576-d619-b2d5-74c0aee08edb " ,

    " token_type " : " service " ,

    " orphan " : true

    }

    }

Options:

A.

The token required to retrieve a secret is hvs.CbzCNJCVWt63jyzyaJakgDwz

B.

The returned token is a batch token

C.

The user needs to retrieve .auth.client_token in order to perform other actions

D.

The accessor will be used to authenticate to Vault to retrieve secrets

E.

The user is using the userpass auth method

F.

The user’s password is stored in a file named payload.json

Buy Now
Questions 11

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?

Options:

A.

Enable the Transit secrets engine and configure the secrets engine to send data directly to the legacy app

B.

Have the app team call the Vault API to encrypt and decrypt the required data

C.

Enable and configure the Kubernetes auth method to allow the application to authenticate to Vault using a JWT

D.

Run the Vault Agent on the application server(s) and use the Auto Auth feature to manage the tokens

Buy Now
Questions 12

How does the instance updates feature work when using the Vault Secrets Operator?

Options:

A.

By monitoring the Vault audit logs to watch for changes to the target path

B.

By constantly validating the current secret stored in Vault

C.

By continuously launching an init container to check for updates

D.

By subscribing to event notifications from Vault

Buy Now
Questions 13

You are using Vault CLI and enable the database secrets engine on the default path of database/. However, the DevOps team wants to enable another database secrets engine for testing but receives an error stating the path is already in use. How can you enable a second database secrets engine using the CLI?

Options:

A.

vault secrets enable database database2/

B.

vault secrets enable -force database

C.

vault secrets enable -path=database2 database

D.

vault secrets enable database2/

Buy Now
Questions 14

Which core component of Vault can store, generate, or encrypt data for organizations?

Options:

A.

auth method

B.

storage backend

C.

secrets engine

D.

audit device

Buy Now
Questions 15

You have logged into the Vault UI and see this screen. What Vault component is being enabled in the screenshot below?

Options:

A.

Storage Backends

B.

Secrets Engine

C.

Auth Methods

D.

Audit Devices

Buy Now
Questions 16

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?

Options:

A.

Policies are only available on Vault Enterprise

B.

The Vault node is sealed, and therefore you cannot manage policies

C.

Policies cannot be managed in the UI, only the CLI and API

D.

The policy associated with your login does not permit access to manage policies

Buy Now
Questions 17

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.

Options:

A.

True

B.

False

Buy Now
Questions 18

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?

Options:

B.

curl --header " X-Vault-Token: hvs.CbzCNJCVWt63jyzyaJakgDwz " https://vault.krausen.com:8200/v1/secret/cloud/azure/subscription

C.

curl --header " X-Vault-Token: hvs.CbzCNJCVWt63jyzyaJakgDwz " https://vault.krausen.com:8200/v1/secret/data/cloud/azure/subscription

D.

curl --header " X-Vault-Token: hvs.CbzCNJCVWt63jyzyaJakgDwz " https://vault.krausen.com:8200/secret/data/cloud/azure/subscription/latest

Buy Now
Questions 19

You are configuring your application to retrieve a new PKI certificate upon provisioning. The Vault admins have given you an AppRole role-id and secret-id to inject into the CI/CD pipeline job that provisions your app. The application uses the credentials to successfully authenticate to Vault using the API. Which of the following is true about the step next required after authenticating to Vault?

Options:

A.

The client token needs to be retrieved from the API response before requesting the new PKI certificate

B.

The initial API response should include the new PKI certificate and no further action is required

C.

The app still needs to use the role-id and secret-id to request the new PKI certificate via API

D.

Now that the app is authenticated, it can simply make another API request for the PKI certificate

Buy Now
Questions 20

Your organization has enabled the LDAP auth method on the path of corp-auth/. When you access the Vault UI, you cannot log in despite providing the correct credentials. Based on the screenshot below, what action should you take to log in?

Options:

A.

Select corp-auth from the dropdown list

B.

Enter the username as corp-auth/bryan.krausen

C.

Select More Options and enter the Mount path that LDAP was enabled on (corp-auth/)

D.

Change to the Namespace of corp-auth before trying to authenticate

Buy Now
Questions 21

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?

Options:

A.

Service token with a use limit

B.

Orphan token

C.

Periodic token

D.

Root token

Buy Now
Questions 22

Which of the following are supported auth methods for Vault? (Select six)

Options:

A.

AWS

B.

Kubernetes

C.

Token

D.

OIDC/JWT

E.

Userpass

F.

Cubbyhole

G.

AppRole

Buy Now
Questions 23

Which of the following tokens are representative of a batch token? (Select two)

Options:

A.

hvr.AAAAAQL_tyer_gNuQqvQYPVQgsNxjap_YW1NB2m4CDHHadQo7rF2XLFGdwNJplAZNKbfloOvifrbpRCGdgG1taTqmC7Da_qftN64zeL10SmNwEoDTiPzC_1aS1KExbtVftU3Sx16cBVqaynwsYRDfVnfTAffE

B.

hvb.CAESIKOOSODDNGUJQe3EmsS8EQthulLjxRDhan_Axte2OrmPGiAKHGh2cy5KVnNhM25JdG82cDB0a1ZDbWhPTlAyekMQHg

C.

hvb.AAAAAQJnAGuRT_z8FD_jOwP26zYaNzJ456_SVqse0oXtaqrpaLUC3LlHrUoJhQPylGX7A6K_dcS0shiql6g5-BVpz0QIkCm7ePFQVjDT2HcIf8C6FNgkW313vYgBGP8lzQHebtspC0pqK64cfyU_qPKIka2u4ng-jsoy

D.

hvs.493n55sZp2lX2zyQfpkHTkL4

Buy Now
Questions 24

After setting up a new HashiCorp Vault server with the default configurations, which method can be used to unseal Vault?

Options:

A.

Log on to each Vault node and provide the root token

B.

Running vault operator init to regenerate unseal keys and automatically unseal the Vault

C.

Submit a threshold of unseal keys to reconstruct the root key

D.

Restart the Vault service, which will automatically unseal it

Buy Now
Questions 25

Your organization operates active/active applications across multiple data centers for high availability. Which Vault feature should be used in the secondary data centers to provide local access to secrets?

Options:

A.

Performance standby nodes

B.

Customized plugins for the Vault cluster

C.

Disaster recovery cluster

D.

Performance replication cluster

Buy Now
Questions 26

Which of the following auth methods are intended for machine-to-machine authentication, and not necessarily human (operator) authentication? (Select four)

Options:

A.

Okta

B.

Tokens

C.

TLS Certificates

D.

Cloud-based Auth methods (AWS, Azure, GCP)

E.

LDAP

F.

AppRole

Buy Now
Questions 27

Elijah manages a legacy application that requires strict control over when its service account credentials change. Which type of credential should be used for this legacy application?

Options:

A.

static

B.

dynamic

Buy Now
Questions 28

Which of the following secrets engines can store static secrets in Vault for future retrieval?

Options:

A.

KV

B.

PKI (certificates)

C.

Database

D.

Transit

Buy Now
Questions 29

True or False? You can create and update Vault policies using the UI.

Options:

A.

True

B.

False

Buy Now
Questions 30

When you are unsealing Vault using unseal keys, what are you actually doing?

Options:

A.

Creating the recovery keys

B.

Exporting the encryption key

C.

Reconstructing the root key

D.

Decrypting the Vault data

Buy Now
Questions 31

What command would you use to enable the Kubernetes secrets engine at the path of /k8s-cluster?

Options:

A.

vault secrets enable -path=k8s-cluster kubernetes

B.

vault kv put k8s-cluster type=kubernetes

C.

vault write sys/mounts/k8s-cluster

D.

vault secrets enable kubernetes -path=k8s-cluster

Buy Now
Questions 32

In Vault, there are two main types of tokens, batch and service. Which of the following is true about the renewable capabilities of each?

Options:

A.

Batch tokens cannot be renewed, but service can be renewed up to the max TTL

B.

Tokens cannot be renewed without reauthenticating to Vault

C.

Service tokens cannot be renewed, but batch can be renewed up to the max TTL

D.

Both batch and service tokens can be renewed up to the max TTL

Buy Now
Questions 33

Select the two paths below that would be permitted for read access based on the following Vault policy:

path " secret/+/training/* " {

capabilities = [ " create " , " read " ]

}

Options:

A.

secret/business/training

B.

secret/cloud/training/test/exam

C.

secret/departments/certification/api

D.

secret/departments/training/vault

Buy Now
Questions 34

Suzy is a Vault user that needs to create and replace values at the path secrets/automation/apps/chef. Does the following policy permit her the permissions to do so?

text

CollapseWrapCopy

path " secrets/automation/apps/chef " {

capabilities = [ " create " , " read " , " list " ]

}

Options:

A.

No, the policy would deny Suzy from performing certain actions

B.

Yes, the policy has appropriate permissions

Buy Now
Questions 35

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?

Options:

A.

azure

B.

database

C.

kv

D.

aws

Buy Now
Questions 36

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... "

Options:

A.

Yes, because the minimum decryption key configuration is set to 4

B.

No, since the latest version of the key is 6

Buy Now
Questions 37

Which of the following best describes response wrapping?

Options:

A.

The response is Base64 encoded, and the user must decode the response to retrieve the cleartext data

B.

Rather than provide a direct response, Vault returns a token and an accessor

C.

Vault responds with an encrypted version of the response, decrypted via transit

D.

Vault inserts the response into a single-use token’s cubbyhole

Buy Now
Questions 38

What is the default TTL for tokens in Vault if one is not specified?

Options:

A.

24 hours (1 day)

B.

15 minutes

C.

768 hours (32 days)

D.

60 minutes (1 hour)

Buy Now
Questions 39

What is the default value of the VAULT_ADDR environment variable?

Buy Now
Questions 40

What header must be included in an API request in order to provide authentication validation?

Options:

A.

X-Token-Vault

B.

X-Vault-Token

C.

X-Token-Creds

D.

X-Vault-Creds

Buy Now
Questions 41

Which of the following secrets engines does NOT issue a lease upon a read request?

Options:

A.

KV

B.

Consul

C.

Database

D.

AWS

Buy Now
Questions 42

What is true about the output of the following command (select three)?

Options:

A.

The admin never sees all the unseal keys and cannot unseal Vault by themselves

B.

All three users, Jane/John/Student01, will receive all unseal keys and can unseal Vault

C.

The admin will receive the unseal keys and be able to unseal Vault themselves

D.

The keys will be returned encrypted

E.

Each individual can only decrypt their own unseal key using their private PGP key

Buy Now
Questions 43

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 " ] }

Options:

A.

vault kv put secret/apps/results student03=practice

B.

vault kv put secret/apps/app01 student=bryan

C.

vault kv put secret/common/results student=frank

D.

vault kv get secret/apps/api_key

Buy Now
Questions 44

Tommy has written an AWS Lambda function that will perform certain tasks for the organization when data has been uploaded to an S3 bucket. Security policies for the organization do not allow Tommy to hardcode any type of credential within the Lambda code or environment variables. However, Tommy needs to retrieve a credential from Vault to write data to an on-premises database. What auth method should Tommy use in Vault to meet the requirements while not violating security policies?

Options:

A.

AWS

B.

Userpass

C.

Token

D.

AppRole

Buy Now
Questions 45

True or False? The Vault Secrets Operator does NOT encrypt client cache, such as Vault tokens and leases, by default in Kubernetes Secrets.

Options:

A.

True

B.

False

Buy Now
Questions 46

True or False? When encrypting data with the Transit secrets engine, Vault always stores the ciphertext in a dedicated KV store along with the associated encryption key.

Options:

A.

True

B.

False

Buy Now
Questions 47

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

Options:

A.

vault token create -policy=dev -use-limit=5

B.

vault token create -policy=dev -ttl=768h

C.

vault token create -policy=dev -policy=default -ttl=768h

D.

vault token create -policy=dev

Buy Now
Questions 48

By default, what TCP port does Vault replication use?

Options:

A.

tcp/8200

B.

tcp/8300

C.

tcp/8201

D.

tcp/8301

Buy Now
Questions 49

You’ve set up multiple Vault clusters, one on-premises intended to be the primary cluster, and the second cluster in AWS, which was deployed for performance replication. After enabling replication, developers complain that all the data they’ve stored in the AWS Vault cluster is missing. What happened?

Options:

A.

There is a certificate mismatch after replication was enabled since Vault replication generates its own TLS certificates to ensure nodes are trusted entities

B.

All of the data on the secondary cluster was deleted after replication was enabled

C.

The data was automatically copied to the primary cluster after replication was enabled since all writes are always forwarded to the primary cluster

D.

The data was moved to a recovery path after replication was enabled. Use the vault secrets move command to move the data back to its intended location

Buy Now
Questions 50

    A Jenkins server is using the following token to access Vault. Based on the lookup shown below, what type of token is this? $ vault token lookup hvs.FGP1A77Hxa1Sp6Pkp1yURcZB

     

    Key Value

    --- -----

    accessor RnH8jtgrxBrYanizlyJ7Y8R

    creation_time 1604604512

    creation_ttl 24h

    display_name token

    entity_id n/a

    expire_time 2025-11-06T14:28:32.8891566-05:00

    explicit_max_ttl 0s

    id hvs.FGP1A77Hxa1Sp6KRau5eNB

    issue_time 2025-11-06T14:28:32.8891566-05:00

    meta < nil >

    num_uses 0

    orphan false

    path auth/token/create

    period 24h

    policies [admin default]

    renewable true

    ttl 23h59m50s

    type service

Options:

A.

Periodic token

B.

Batch token

C.

Orphaned token

D.

Secondary token

Buy Now
Questions 51

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?

Options:

A.

users/auth/

B.

authentication/users

C.

auth/users

D.

users/

Buy Now
Questions 52

What are the primary benefits of running Vault in a production deployment over dev server mode (select two)?

Options:

A.

Faster deployment

B.

Persistent storage

C.

Ability to enable auth methods

D.

Encryption via TLS

Buy Now
Questions 53

How does the Vault Secrets Operator (VSO) assist in integrating Kubernetes-based workloads with Vault?

Options:

A.

By enabling a local API endpoint to allow the workload to make requests directly from the VSO

B.

By using client-side caching for KVv1 and KVv2 secrets engines

C.

By injecting a Vault Agent directly into the pod requesting secrets from Vault

D.

By watching for changes to its supported set of Custom Resource Definitions (CRD)

Buy Now
Questions 54

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?

Options:

A.

Have Vault write all the tokens and leases to a file so you have a second copy of them

B.

Configure all applications to use the auto-auth feature of the Vault Agent

C.

Configure Disaster Recovery replication and promote the secondary cluster during an outage

D.

Replicate to another cluster using Performance Replication and promote the secondary cluster during an outage

Buy Now
Questions 55

After encrypting data using the Transit secrets engine, you’ve received the following output. Which of the following is true based on the output displayed below?

Key: ciphertext Value: vault:v2:45f9zW6cglbrzCjI0yCyC6DBYtSBSxnMgUn9B5aHcGEit71xefPEmmjMbrk3

Options:

A.

The original encryption key has been rotated at least once

B.

The data is stored in Vault using a KV v2 secrets engine

C.

This is the second version of the encrypted data

D.

Similar to the KV secrets engine, the Transit secrets engine was enabled using the transit v2 option

Buy Now
Questions 56

What is the default maximum time-to-live (TTL) for a token, measured in days?

Options:

A.

32 days (768 hours)

B.

7 days (168 hours)

C.

14 days (336 hours)

D.

31 days (744 hours)

Buy Now
Questions 57

A user is assigned the following policy, and they can successfully retrieve secrets using the CLI. However, the user reports receiving an error message in the UI. Why can’t the user access the secret in the Vault UI?

path " kv/apps/app01 " { capabilities = [ " read " ] }

Successful retrieval using the CLI

(Error: Permission denied in UI)

Options:

A.

The user doesn’t know what they’re doing

B.

The user doesn’t have permissions to retrieve the data from the UI, only the CLI

C.

The user needs list permissions to browse the UI

D.

The user’s token is invalid

Buy Now
Questions 58

Select the policies below that permit you to create a new entry of environment=prod at the path /secrets/apps/my_secret (select three).

Options:

A.

path " secrets/+/my_secret " { capabilities = [ " create " ] allowed_parameters = { " * " = [] } }

B.

path " secrets/apps/my_secret " { capabilities = [ " update " ] }

C.

path " secrets/apps/my_secret " { capabilities = [ " create " ] allowed_parameters = { " environment " = [] } }

D.

path " secrets/apps/* " { capabilities = [ " create " ] allowed_parameters = { " environment " = [ " dev " , " test " , " qa " , " prod " ] } }

Buy Now
Questions 59

From the options below, select the benefits of using a batch token over a service token (select four).

Options:

A.

Often used for ephemeral, high-performance workloads

B.

Can be a root token

C.

Can be used on performance replication clusters (if orphan)

D.

Has accessors

E.

Lightweight and scalable

F.

No storage cost for token creation

Buy Now
Questions 60

If Bobby is currently assigned the following policy, what additional policy can be added to ensure Bobby cannot access the data stored at secret/apps/confidential but still read all other secrets?

path " secret/apps/* " { capabilities = [ " create " , " read " , " update " , " delete " , " list " ] }

Options:

A.

path " secret/apps/confidential " { capabilities = [ " deny " ] }

B.

path " secret/* " { capabilities = [ " read " , " deny " ] }

C.

path " secret/apps/* " { capabilities = [ " deny " ] }

D.

path " secret/apps/confidential/* " { capabilities = [ " deny " ] }

Buy Now
Questions 61

Which is true about Vault authentication responses when using the Vault API?

Options:

A.

The Vault API cannot be used for authentication.

B.

The returned tokens are not needed as all API endpoints are unauthenticated.

C.

The returned tokens should be deleted to avoid any use in future requests.

D.

The returned token must be passed in the request header.

Buy Now
Questions 62

A user logs into Vault through a configured LDAP auth method and notices that re-authentication is needed after every 8 hours.

Why would the user be required to log in again every 8 hours?

Options:

A.

The time-to-live associated with the existing token lease is up, and the lease has been revoked.

B.

The wrong token was provided by the user too many times and has been revoked.

C.

The administrator revoked the root token.

D.

The LDAP password associated with the user has changed.

Buy Now
Questions 63

Which statement describes the results of this command: $ vault secrets enable transit

Options:

A.

Enables the transit secrets engine at transit path

B.

Requires a root token to execute the command successfully

C.

Enables the transit secrets engine at secret path

D.

Fails due to missing -path parameter

E.

Fails because the transit secrets engine is enabled by default

Buy Now
Questions 64

Which of the following vault lease operations uses a lease _ id as an argument? Choose two correct answers.

Options:

A.

renew

B.

revoke -prefix

C.

create

D.

describe

E.

revoke

Buy Now
Questions 65

When unsealing Vault, each Shamir unseal key should be entered:

Options:

A.

Sequentially from one system that all of the administrators are in front of

B.

By different administrators each connecting from different computers

C.

While encrypted with each administrators PGP key

D.

At the command line in one single command

Buy Now
Questions 66

You can only create orphan tokens using the root token.

Options:

A.

True

B.

False

Buy Now
Questions 67

You can build a high availability Vault cluster with any storage backend.

Options:

A.

True

B.

False

Buy Now
Questions 68

Which of the following statements are true about Vault policies? Choose two correct answers.

Options:

A.

The default policy can not be modified

B.

You must use YAML to define policies

C.

Policies provide a declarative way to grant or forbid access to certain paths and operations in Vault

D.

Vault must be restarted in order for a policy change to take an effect

E.

Policies deny by default (empty policy grants no permission)

Buy Now
Questions 69

You have enabled the database secrets engine at the database/ path and created the readonly role. You run vault read, and the output shown in the exhibit is returned.

Which command renews the given lease?

Exhibit:

$ vault read database/creds/readonly

lease_id database/creds/readonly/fyF5xDomnKeCHNZNQgStwBKD

lease_duration 1h

lease_renewable true

password Ala-ckirtymYaXACplHn

username v-token-readonly-6iRIcGv8tLpu816oblPY-1556567086

Options:

A.

vault lease renew database/creds/readonly/fyF5xDomnKeCHNZNQgStwBKD

B.

Leases with the parameter lease_renewable set to true are renewed automatically.

C.

vault lease renew database/creds/readonly/

D.

vault lease renew

Buy Now
Questions 70

Which of the following statements describe the secrets engine in Vault? Choose three correct answers.

Options:

A.

Some secrets engines simply store and read data

B.

Once enabled, you cannot disable the secrets engine

C.

You can build your own custom secrets engine

D.

Each secrets engine is isolated to its path

E.

A secrets engine cannot be enabled at multiple paths

Buy Now
Questions 71

Where can you set the Vault seal configuration? Choose two correct answers.

Options:

A.

Cloud Provider KMS

B.

Vault CLI

C.

Vault configuration file

D.

Environment variables

E.

Vault API

Buy Now
Questions 72

Which of the following are benefits of Vault Agent Caching?

Pick the 2 correct responses below.

Options:

A.

Reduces the number of Vault secrets engines which must be mounted.

B.

Renders secrets using the Consul Template markup.

C.

Reduces the latency to retrieve secrets from Vault.

D.

Secret requests may be handled by the local cache, reducing load on the Vault servers.

E.

Eliminates the need for disaster recovery clusters.

Buy Now
Questions 73

An organization would like to use a scheduler to track & revoke access granted to a job (by Vault) at completion. What auth-associated Vault object should be tracked to enable this behavior?

Options:

A.

Token accessor

B.

Token ID

C.

Lease ID

D.

Authentication method

Buy Now
Questions 74

You are using the Vault userpass auth method mounted at auth/userpass. How do you create a new user named " sally " with password " h0wN0wB4r0wnC0w " ? This new user will need the power-users policy.

Options:

A.

B.

C.

D.

Buy Now
Questions 75

What is Vault’s default REST API port?

Options:

A.

443

B.

8200

C.

8201

D.

8500

E.

None of these are Vault’s default REST API port.

Buy Now
Questions 76

The following three policies exist in Vault. What do these policies allow an organization to do?

Options:

A.

Separates permissions allowed on actions associated with the transit secret engine

B.

Nothing, as the minimum permissions to perform useful tasks are not present

C.

Encrypt, decrypt, and rewrap data using the transit engine all in one policy

D.

Create a transit encryption key for encrypting, decrypting, and rewrapping encrypted data

Buy Now
Questions 77

The Key/Value (KV) secrets engine is an example of a dynamic secrets engine.

Options:

A.

True

B.

False

Buy Now
Questions 78

What can be used to limit the scope of a credential breach?

Options:

A.

Storage of secrets in a distributed ledger

B.

Enable audit logging

C.

Use of a short-lived dynamic secrets

D.

Sharing credentials between applications

Buy Now
Questions 79

When creating a policy, an error was thrown:

Which statement describes the fix for this issue?

Options:

A.

Replace write with create in the capabilities list

B.

You cannot have a wildcard ( " • " ) in the path

C.

sudo is not a capability

Buy Now
Questions 80

What artifacts allow you to regenerate a root token after you have revoked it?

Pick the 2 correct responses below.

Options:

A.

Access to the OS root user.

B.

Policy with sudo access.

C.

Initial root token.

D.

Unseal keys.

E.

Recovery keys.

Buy Now
Questions 81

Using the Vault CLI, there are several ways to create a new policy. Select the valid commands (Select three)

Options:

A.

vault policy write my-policy - < < EOF

path " secret/data/* " {

capabilities = [ " create " , " update " ]

}

EOF

B.

vault policy create my-policy /tmp/policy.hcl

C.

vault policy write my-policy /tmp/policy.hcl

D.

$ cat user.hcl | vault policy write my-policy -

Buy Now
Questions 82

Which statement best explains how Vault handles data encryption?

Options:

A.

Vault uses encryption to secure data at rest and in transit, using an encryption key protected by the root key.

B.

Vault encrypts data using a root key stored in plain text on the server’s filesystem.

C.

Vault stores data in plaintext on disk but encrypts it only when transmitting it over the network.

D.

Vault offloads all encryption to third-party services, so no secret data is ever processed by Vault.

Buy Now
Questions 83

Which of the following auth methods is the best choice for human interaction with Vault (as opposed to machine/system authentication)?

Options:

A.

Kubernetes

B.

AppRole

C.

TLS

D.

OIDC

Buy Now
Questions 84

Which of the following is not an action associated with the Transit secrets engine when interacting with data?

Options:

A.

encrypt

B.

decrypt

C.

rewrap

D.

update

Buy Now
Questions 85

Which two characters can be used when writing a policy to reflect a wildcard or path segment? (Select two)

Options:

A.

The ampersand &

B.

The at symbol @

C.

The splat character *

D.

A dollar sign $

E.

The pound symbol #

F.

The plus symbol +

Buy Now
Questions 86

Your organization wants to set up human-based authentication for AzureAD. What authentication method should you enable and configure for Vault?

Options:

A.

OIDC/JWT

B.

Okta

C.

Active Directory

D.

UserPass

Buy Now
Questions 87

Which is not a capability that can be used when writing a Vault policy?

Options:

A.

delete

B.

modify

C.

create

D.

list

E.

read

F.

update

Buy Now
Questions 88

You have deployed an application that needs to encrypt data before writing to a database. What secrets engine should you use?

Options:

A.

Transit

B.

SSH

C.

PKI

D.

TOTP

Buy Now
Questions 89

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.

Options:

A.

True

B.

False

Buy Now
Questions 90

True or False? The userpass auth method has the ability to access external services in order to provide authentication to Vault.

Options:

A.

True

B.

False

Buy Now
Questions 91

What type of Vault token does not have a TTL (Time to Live)?

Options:

A.

Child tokens

B.

Parent tokens

C.

Service tokens

D.

Root tokens

E.

Batch tokens

Buy Now
Questions 92

What is the default method of authentication after first initializing Vault?

Options:

A.

TLS certificates

B.

GitHub

C.

Admin account

D.

Tokens

E.

AppRole

F.

Userpass

Buy Now
Questions 93

Select the two default policies created in Vault. (Select two)

Options:

A.

root

B.

user

C.

admin

D.

default

E.

base

F.

vault

Buy Now
Questions 94

Your application cannot manage authentication with Vault, but it can communicate with a local service to retrieve secrets. What solution can enable your app to generate dynamic credentials from Vault?

Options:

A.

Vault Proxy with caching feature enabled

B.

Vault Agent with environment variable secret injection

C.

Vault Proxy with Auto-Auth feature enabled

D.

Vault Agent with the templating feature configured

Buy Now
Questions 95

Which of the following unseal options can automatically unseal Vault upon the start of the Vault service? (Select four)

Options:

A.

HSM

B.

Azure KMS

C.

AWS KMS

D.

Transit

E.

Key Shards

Buy Now
Questions 96

The Vault Agent provides which of the following benefits? (Select three)

Options:

A.

Token renewal

B.

Authentication to Vault

C.

Client-side caching of responses

D.

Automatically creates secrets in the desired storage backend

Buy Now
Questions 97

Mike’s Cereal Shack uses Vault to encrypt customer data to ensure it is always stored securely. They are developing a new application integration to send new customer data to be encrypted using the following API request:

text

CollapseWrapCopy

$ curl \

--header " X-Vault-Token: hvs.sf4vj1rFV5PvQSV3M9dcv832brxQFsfbXA " \

--request POST \

--data @data.json \

https://vault.mcshack.com:8200/v1/transit/encrypt/customer-data

What would be contained within the data.json file?

Options:

A.

Transit secrets engine configuration file

B.

Ciphertext to be decrypted

C.

The encryption key to be used for encrypting the data

D.

Cleartext customer data to be encrypted

Buy Now
Exam Code: HCVA0-003
Exam Name: HashiCorp Certified: Vault Associate (003) Exam
Last Update: Jun 24, 2026
Questions: 324
$64.99  $185.69
$49.99  $142.83
$54.99  $157.11
buy now HCVA0-003