After setting up a new HashiCorp Vault server with the default configurations, which method can be used to unseal Vault?
In Vault, there are two main types of tokens, batch and service. Which of the following is true about the renewable capabilities of each?
Which of the following secrets engines can store static secrets in Vault for future retrieval?
Which of the following features in Vault will replicate service tokens between clusters?
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?
What occurs when a Vault cluster cannot maintain a quorum while using the Integrated Storage backend?
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
}
}
True or False? You can create and update Vault policies using the UI.
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?
True or False? Once you authenticate to Vault using the API, subsequent requests will automatically be permitted without further interaction.