You want to encrypt a credit card number using the Transit secrets engine. You enter the following command and receive an error. What can you do to ensure that the credit card number is properly encrypted and the ciphertext is returned?
$ vault write -format=json transit/encrypt/creditcards plaintext="1234 5678 9101 1121"
Error: * illegal base64 data at input byte 4
What is the result of the following Vault command?
$ vault auth enable kubernetes
When Vault is sealed, which are the only two operations available to a Vault administrator? (Select two)
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?
Which of the following features are not available in the Vault Community version?
Your organization wants to set up human-based authentication for AzureAD. What authentication method should you enable and configure for Vault?
True or False? Once the minimum decryption version is set on an encryption key, older versions of the key are removed from Vault and are no longer available for decryption operations.
Based on the following output, what command can Steve use to determine if the KV store is configured for versioning?
text
CollapseWrapCopy
$ vault secrets list
Path Type Accessor Description
---- ---- -------- -----------
automation/ kv kv_56f991b9 Automation team for CI/CD
cloud/ kv kv_4426c541 Cloud team for static secrets
cubbyhole/ cubbyhole cubbyhole_9bd538e per-token priv secret storage
data_team/ kv kv_96d57692 Data warehouse KV for certs
identity/ identity identity_0042595e identity store
network/ kv kv_3e53aaab Network team secret storage
secret/ kv kv_d66e2adc key/value secret storage
sys/ system system_d6f218a9 system endpoints
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.