▬ Contents of this video ▬▬▬▬▬▬▬▬▬▬
0:00 Intro
1:19 what you will learn today
1:58 key vault terminology
2:00 key vault creation azure portal
5:41 key vault backup
6:06 restore key
9:18 soft delete retention
10:36 azure cli commands
11:18 python program for creating and retrieve keys
In this tutorial Azure Key Vault tutorial you will learn the below
How to create Azure vault in the portal
Soft delete feature
How to recover secretes and keys
Azure vault policy.
How to work with azure vault using Powershell
How to work with azure vault using Python - azure sdk
Secrets Management : Tokens, passwords, certificates, API keys, and other secrets
Key management - Azure Key Vault makes it easy to create and control the encryption keys used to encrypt your data
Certificate management - public / private certs and automate it
Azure Cli commands
to create - az keyvault secret set --name --vault-name --value
to list - az keyvault secret list --vault-name
to list deleted - az keyvault secret list-deleted --vault-name
to recover - az keyvault secret recover --name --vault-name
to purge - az keyvault secret purge --name --vault-name
Sample python code from Azure Kb
https://docs.microsoft.com/en-us/azur...