0

I am trying to learn about the definition and difference between Keys, Secrets and Certificates in Azure Key Vault. I have been reading through the post below a couple of times but to me it seems a bit technical:

What is difference between Keys and Secrets in Azure Key Vault?

So In layman's terms is it possible for anyone to describe what is the definition and difference between Keys, Secrets and certificates in Azure Key Vault?

Thank you very much in advance.

Caze982
  • 1
  • 1

1 Answers1

1

Secrets are used for sensitive information that is used by, for example, an application. Typical secrets are connection strings for databases, client secrets for app registrations, passwords for ftp servers etc.

Certificates are, well, certificates like SSL certificates to secure web applications or code signing certificates for software deployments.

Keys are cryptographic keys used to encrypt for example data at rest for azure services.

See the docs for more details.

Peter Bons
  • 26,826
  • 4
  • 50
  • 74