🚀
ShipWithDjango Documentation
  • Welcome to ShipWithDjango Documentation
  • When and How to use ShipWithDjango?
  • Getting Started
    • Obtaining a license
    • Downloading ShipWithDjango
    • Running locally
    • Next steps
  • Platform
    • Default Configuration
    • Subnavigation
  • Theme
    • Tailwind CSS
    • Configuration
  • Secret Management
    • Default Configuration
    • Setting your environment variables
    • Third-party providers
      • Infisical
      • AWS Secrets Manager
      • Azure Key Vault
    • Order of retrieval
  • Authentication
    • Default Configuration
    • GitHub
    • LinkedIn
  • Emailing
    • Default Configuration
    • Using SendGrid
    • Using SMTP
    • Using the task queue for sending emails
  • Payments & Billing
    • Billing
    • Stripe
  • OpenAI/Dall-E
    • Default Configuration
  • API
    • Django REST framework
    • Built-in API utilities
    • Postman
  • Logging
    • Default Configuration
    • Using Sentry
    • Using Better Stack
  • Localization
    • Translations
Powered by GitBook
On this page
  1. Secret Management
  2. Third-party providers

Azure Key Vault

PreviousAWS Secrets ManagerNextOrder of retrieval

Last updated 9 months ago

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 .

For Azure Key Vault, configure the following variables:

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
Azure Key Vault page