Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

This sample repo includes sample code demonstrating a common mechanism for authenticating to an Azure Key Vault vault.

License

Notifications You must be signed in to change notification settings

Azure-Samples/key-vault-java-authentication

Repository files navigation

languages page_type products description
java
sample
azure
azure-key-vault
This sample repo contains sample code demonstrating common mechanisms for authenticating to an Azure Key Vault.

Warning

THIS DOCUMENT IS OUTDATED AND HAS BEEN DEPRECATED.

For updated samples on how to authenticate with your Key Vault application, please refer to this document. For a general overview about the Azure Identity library, see here. You can also find samples on how to use most types of credentials for authentication here.

Authentication samples for Azure Key Vault using the Azure Java SDK

This sample repo contains sample code demonstrating common mechanisms for authenticating to an Azure Key Vault.

This sample shows how to do the following operations of Key Vault with Key Vault SDK

  • Create Key Vault

  • Create a Key Vault client using certificate based authentication

  • Create a secret inside the Key Vault

  • Get the secret

Samples in this repo

  • KeyVaultCertificateAuthenticator -- authenticates to an Azure Key Vault through a service principal with a self signed certificate. This takes in a pem file with the certificate and private key. This is the recommended way to authenticate to Key Vault.
  • KeyVaultADALAuthenticator -- authenticates to an Azure Key Vault by providing a callback to authenticate using ADAL.

Prerequisites

  • Java 1.7+
  • An Azure Service Principal, through Azure CLI, PowerShell or Azure Portal.
  • A self signed certificate, uploaded to your service principal through Azure Portal or Powershell.

Running the samples

  1. If not installed, install Java.

  2. Clone the repository.

git clone https://github.com/Azure-Samples/key-vault-java-authentication.git
  1. Create an Azure service principal, using Azure CLI, PowerShell or Azure Portal. Note that if you wish to authenticate with the certificate authenticator the certificate should be saved locally.

  2. Use an authentication file to authenticate to the Azure management plane.

  3. Add these variables to pom.xml for a demo of certificate authentication. Note that CERTIFICATE_PASSWORD is optional depending on whether or not your .pem file requires a certificate.

    <systemProperties>
        <systemProperty>
                <key>AZURE_TENANT_ID</key>
                <value>{AZURE_TENANT_ID}</value>
        </systemProperty>
        <systemProperty>
                <key>AZURE_CLIENT_ID</key>
                <value>{AZURE_CLIENT_ID}</value>
        </systemProperty>
        <systemProperty>
                <key>AZURE_AUTH_LOCATION</key>
                <value>{AZURE_AUTH_LOCATION}</value>
        </systemProperty>
        <systemProperty>
                <key>CERTIFICATE_PATH</key>
                <value>{CERTIFICATE_PATH}</value>
        </systemProperty>
        <systemProperty>
                <key>CERTIFICATE_PASSWORD</key>
                <value>{CERTIFICATE_PASSWORD}</value>
        </systemProperty>
<systemProperties>

For ADAL authentication, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET also must be set.

  1. Run mvn clean compile exec:java for a sample run through.

Use latest Key Vault SDK

The Key Vault secrets SDK here is com.azure.azure-security-keyvault-secrets, if you are using the latest version of the Key Vault SDK package, please refer to the following examples:

  • IdentityReadmeSamples.java shows multiple ways to authenticate the Key Vault client via DefaultAzureCredential, device code, client secret or certificate in addition to others.

  • HelloWorld.java - Examples for common Key Vault tasks:

    • Create a secret inside the Key Vault
    • Get the secret

More information

About

This sample repo includes sample code demonstrating a common mechanism for authenticating to an Azure Key Vault vault.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

 
 
 

Languages