Summer Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

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?

A.

Performance standby nodes

B.

Customized plugins for the Vault cluster

C.

Disaster recovery cluster

D.

Performance replication cluster

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

A.

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

B.

No, since the latest version of the key is 6

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

A.

TLS certificates

B.

GitHub

C.

Admin account

D.

Tokens

E.

AppRole

F.

Userpass

True or False? The command vault lease revoke -prefix aws/ will revoke all leases associated with the secret engine mounted at /aws.

A.

True

B.

False

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?

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

True or False? All Vault policies are deny by default.

A.

True

B.

False

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

A.

root

B.

user

C.

admin

D.

default

E.

base

F.

vault

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

A.

Transit

B.

SSH

C.

PKI

D.

TOTP

Before the following command can be run to encrypt data, what (three) commands must be run to enable and configure the transit secrets engine in Vault? (Select three)

text

CollapseWrapCopy

$ vault write transit/encrypt/vendor \

plaintext= " aGFzaGljb3JwIGNlcnRpZmllZA== "

A.

base64 < < < " hashicorp certified "

B.

vault write transit/encrypt/vendor

C.

vault secrets list

D.

vault secrets enable transit

E.

vault write -f transit/keys/vendor

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?

A.

Add a deny statement for all possible misspellings of the value

B.

Add an allowed_parameters value to the policy

C.

Change the policy to include the list capability

D.

Use a * wildcard at the end of the policy