
Getting Started with Azure Key Vault with .NET Core Part 1 – Create Azure Key Vault and secret
Let’s go through the quickstart from Microsoft docs and use Azure Key Vault with .NET Core here.
First let’s create our Azure resources. A resource group, keyvault and a keyvault secret.
az group create -l westeurope -n keyvaultquickstart-rg
az keyvault create --name keyvaultquickstart-kv --resource-group keyvaultquickstart-rg --location westeurope
az keyvault secret set --vault-name keyvaultquickstart-kv --name AppSecret --value MyAppSecret

Great! Now in part 2 we will clone the Repo with the .NET app and edit the placeholder for the vault and secret!