After creating a dynamic credential on a database, the DBA accidentally deletes the credentials on the database itself. When attempting to remove the lease, Vault returns an error stating that the credential cannot be found. What command can be run to make Vault remove the secret?
What is the result of the following Vault command?
$ vault auth enable kubernetes
You are working on a new project and need to retrieve a secret from Vault. You log into the Vault UI and browse to the path where the secret is stored. Based on the screenshot below, what is true about the secrets stored in this path? (Select four)

Thomas has authenticated to Vault using the API and has received the following response. What data must Thomas parse from the response in order to continue making requests to Vault?
text
CollapseWrapCopy
{
" request_id " : " 65897160-fd8b-1f87-c24e-fdba14c9728e " ,
" lease_id " : " " ,
" renewable " : false,
" lease_duration " : 0,
" data " : null,
" wrap_info " : null,
" warnings " : null,
" auth " : {
" client_token " : " hvss.lzrmRe5Y3LMcDRmOttEjWoagd92fD29fxakwej_38djs " ,
" accessor " : " EMX0nv4nr0Y1wXoaN7i0WDW1 " ,
" policies " : [ " bryan " , " default " ],
" token_policies " : [ " bryan " , " default " ],
" metadata " : { " username " : " bryan " },
" lease_duration " : 2764800,
" renewable " : true,
" entity_id " : " 40e203e8-818e-b6ad-4cb3-0befdbf9b598 " ,
" token_type " : " service " ,
" orphan " : true
}
}
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?
True or False? Once you authenticate to Vault using the API, subsequent requests will automatically be permitted without further interaction.
Which of the following secrets engines does NOT issue a lease upon a read request?
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
Which of the following token attributes can be used to renew a token in Vault (select two)?