Azure CosmosDB

To obtain the connection string needed to connect to a Cosmos DB account using the SQL API, log in to the Azure Portal, select Azure Cosmos DB, and select your account. In the Settings section, click Connection String and set the following values:

  • AccountEndpoint: The value should be the Cosmos DB account URL from the Keys blade of the Cosmos DB account.

  • AccountKey: In the Azure portal, navigate to the Cosmos DB service and select your Azure Cosmos DB account. From the resource menu, go to the Keys page. Find the PRIMARY KEY value and set Token to this value.

  • TokenType: (Optional) Set this to 'master' if you are using a Master Token, which is a full permissions token generated during account creation. Otherwise, set this property to 'resource' if you are using a Resource Token, which is custom permissions token generated when a database user is set up. The default value is 'master'. Check the TokenType connection property description for more details.

Last updated