# Azure Key Vault

Azure Key Vault is a cloud-based service provided by Microsoft Azure that allows you to securely store and manage sensitive information such as encryption keys, certificates, and secrets like API keys and passwords. It provides a centralized and secure environment for managing access to this confidential data while offering built-in tools for key rotation and auditing. Azure Key Vault integrates seamlessly with other Azure services, making it an excellent choice for organizations already using the Azure infrastructure, as it simplifies the management and protection of secrets within your existing ecosystem.

For more detailed information, you can visit the [Azure Key Vault page](https://azure.microsoft.com/en-us/services/key-vault/).

For Azure Key Vault, configure the following variables:

```python
SECRETS_MANAGER = 'azure'
AZURE_CLIENT_ID = None  # Your Azure client ID
AZURE_TENANT_ID = None  # Your Azure tenant ID
AZURE_CLIENT_SECRET = None  # Your Azure client secret
AZURE_KEY_VAULT_NAME = None  # The name of your Azure Key Vault
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.shipwithdjango.com/secret-management/third-party-providers/azure-key-vault.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
