Valid HCVA0-003 Dumps shared by ExamDiscuss.com for Helping Passing HCVA0-003 Exam! ExamDiscuss.com now offer the newest HCVA0-003 exam dumps, the ExamDiscuss.com HCVA0-003 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com HCVA0-003 dumps with Test Engine here:
Your organization recently suffered a security breach on a specific application, and the security response team believes that MySQL database credentials were likely obtained during the event. The application generated the credentials using the database secrets engine in Vault mounted at the path database/. How can you quickly revoke all of the secrets generated by this secrets engine?
Correct Answer: D
Comprehensive and Detailed In-Depth Explanation: To revoke all secrets from the database/ engine, use vault lease revoke -prefix. The Vault documentation states: "If you need to revoke many leases, you can use vault lease revoke -prefix <prefix> and Vault will revoke all leases associated with the specified path. For example, you can revoke all leases associated with an entire database secrets engine by using vault lease revoke -prefix database/." -Vault Commands: lease revoke * D: Correct. Revokes all leases under database/: "Using the command vault lease revoke -prefix database/ will revoke all the leases that have a prefix matching the specified path database/." -Vault Commands: lease revoke * A: Revokes tokens, not leases. * B: Disables the engine, not existing secrets. * C: Renews a specific lease, not revokes all. References: Vault Commands: lease revoke Vault Secrets: Databases