Commonly Used Git Commands
Configuring Git Before using Git, you need to configure your user information, such as your name and email address. This information will be associated with your commits. git config --global…
15/04/2025
In this blog, we will explore how to securely store Azure Function keys in Azure Key Vault using User Assigned Managed Identity (UAMI). By default, keys are stored in a Blob storage container in the account provided by the AzureWebJobsStorage setting. However, for enhanced security, we can store these keys in Azure…