Azure Key Vault access credentials

To create a service principle and retrieve the access credentials, please follow this Create Azure service principals using the Azure CLI (make sure to follow Password-based authentication)

After the service principle is created, follow Assign an Azure Key Vault access policy (CLI) to create an access policy for the service principle (recommend to use 'Secret Management' template as shown on the official guide).

Your output may look like below. All you need for DDHub Client GW are:

  • clientId

  • clientSecret

  • tenantId

  • Vault URI (on your Key Vaults resource overview page)

{
  "clientId": "dcb*****-5**d-455b-93df-27*******a",
  "clientSecret": "ABy******************UBT",
  "subscriptionId": "3e0778884f-****-3433-5555-4d770DFGSFGDf",
  "tenantId": "778884f-fd1f-****-5e33-4a945d770D56",
  "activeDirectoryEndpointUrl": "https://login.microsoftonline.com",
  "resourceManagerEndpointUrl": "https://management.azure.com/",
  "activeDirectoryGraphResourceId": "https://graph.windows.net/",
  "sqlManagementEndpointUrl": "https://management.core.windows.net:8443/",
  "galleryEndpointUrl": "https://gallery.azure.com/",
  "managementEndpointUrl": "https://management.core.windows.net/"
}

Last updated