Search⌘ K
AI Features

Key Vault and Configuration Management

Understand how to integrate Azure Key Vault into your CI CD pipelines and manage configuration files for local and production environments. Learn to use PowerShell scripts to replace sensitive values securely during deployment, enabling automated and secure configuration management.

Integrating the Azure Key Vault and retrieved values

You can simply integrate the Azure Key Vault in your pipeline using the task AzureKeyVault@1 (...@1 here is a version of the task). The Key Vault task has the following format:

YAML
# Azure Key Vault
# Download Azure Key Vault secrets
- task: AzureKeyVault@1
inputs:
azureSubscription:
keyVaultName:
secretsFilter: '*'
runAsPreJob: false # Azure DevOps Services only

You can find a complete reference ...