최신HashiCorp Certified: Vault Associate (003)Exam - HCVA0-003무료샘플문제
A MySQL server has been deployed on Google Cloud Platform (GCP) to support a legacy application. You want to generate dynamic credentials against this MySQL server rather than use static credentials. What Vault secrets engine would you use to accomplish this?
You have a new team member on the Vault operations team. Their first task is to rotate the encryption key in Vault as part of the organization's security policy. However, when they log in, they get an access denied error when attempting to rotate the key. The policy being used is below. Why can't the user rotate the encryption key?
path " auth/* " {
capabilities = [ " create " , " read " , " update " , " delete " , " list " ]
}
path " sys/rotate " {
capabilities = [ " read " , " update " ]
}
You are using the Vault userpass auth method mounted at auth/userpass. How do you create a new user named " sally " with password " h0wN0wB4r0wnC0w " ? This new user will need the power-users policy.
Based on the screenshot below, how many auth methods have been enabled on this Vault instance?

You are deploying Vault in a local data center, but want to be sure you have a secondary Vault cluster in the event the primary cluster goes offline. In the secondary data center, you have applications that are running, as they are architected to run active/active. Which type of replication would be best in this scenario?
A new application is being provisioned in your environment. The application requires the generation of dynamic credentials against the Oracle database in order to read reporting data. Which is the best auth method to use to permit the application to authenticate to Vault?
How would you describe the value of using the Vault transit secrets engine?
Suzy is a Vault user that needs to create and replace values at the path secrets/automation/apps/chef. Does the following policy permit her the permissions to do so?
text
CollapseWrapCopy
path " secrets/automation/apps/chef " {
capabilities = [ " create " , " read " , " list " ]
}
There are three Vault policies displayed in the exhibit.
What do these policies allow the organization to do?
Exhibit:
app.hcl
path " transit/encrypt/my_app_key " { capabilities = [ " update " ] }
callcenter.hcl
path " transit/decrypt/my_app_key " { capabilities = [ " update " ] }
rewrap.hcl
path " transit/keys/my_app_key " { capabilities = [ " read " ] }
path " transit/rewrap/my_app_key " { capabilities = [ " update " ] }