Christy has created a token and needs to use that token to access Vault. What command can she use to authenticate and access secrets stored in Vault?
$ vault token create -policy=christy
Key Value
--- -----
token hvs.hxDIPd8RPVtxu4AzSGS1lArP
token_accessor AxwxpDs6LbdFQbWGmBDnwIK3
token_duration 24h
token_renewable true
token_policies ["christy" "default"]
identity_policies []
policies ["christy" "default"]
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.
True or False? All Vault policies are deny by default.
Without logging into another interface, what feature can Chad use to execute a simple CLI command to enable a new secrets engine?
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"] }
Which of the following is NOT a valid way in which a lease can be revoked in Vault?
Given the following screenshot, how many secrets engines have been enabled by a Vault user?
Select the policies below that permit you to create a new entry of environment=prod at the path /secrets/apps/my_secret (select three).
How can Vault be used to programmatically obtain a generated code for MFA, somewhat similar to Google Authenticator?
Which of the following statements best describes the difference in cluster strategies between self-managed Vault and HashiCorp-managed Vault?