You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »


REST API Credentials configuration guidelines can be found here.

Azure Identity Connector's Credentials type must always be specified as "azure-identity".

Properties specific to the Azure Identity Connector's Credentials are described below.


Azure Identity Credentials Properties


FieldRequiredDefaultMultipleNotesExample
propertiesYes-NoConfiguration object
clientIdYes-NoThe Client Id to be used to connect to Azure."dd1bc268-8b54-4ea3-b43d-a15b665d04de"
clientSecretYes-NoThe Client Secret corresponding to the specified Client Id."PZhbltkGdXEAYJl3fn9een1R1bTlrHClNSm8U3QtEet="

Create example


POST /aspire/_api/credentials
{
  "type": "azure-identity",
  "description": "Azure Identity Credentials Test",
   "properties": { 
       "clientId": "dd1bc268-8b54-4ea3-b43d-a15b665d04de",
        "clientSecret": "PZhbltkGdXEAYJl3fn9een1R1bTlrHClNSm8U3QtEet="
   }
}



  • No labels