Azure Key Vault
Overview
Real-life Use Cases
Terraform Example
resource "azurerm_key_vault" "main" {
name = "my-keyvault"
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
tenant_id = data.azurerm_client_config.current.tenant_id
sku_name = "standard"
}Bicep Example
Azure CLI Example
Best Practices
Common Pitfalls
Last updated