Skip to content

Files

78 lines (55 loc) · 3.7 KB

how-to-integrate-storage-queue.md

File metadata and controls

78 lines (55 loc) · 3.7 KB
title description author ms.author ms.service ms.custom ms.topic ms.date
Integrate Azure Queue Storage with Service Connector
Integrate Azure Queue Storage into your application with Service Connector
shizn
xshi
service-connector
event-tier1-build-2022
how-to
05/03/2022

Integrate Azure Queue Storage with Service Connector

This page shows the supported authentication types and client types of Azure Queue Storage using Service Connector. You might still be able to connect to Azure Queue Storage in other programming languages without using Service Connector. This page also shows default environment variable names and values (or Spring Boot configuration) you get when you create the service connection. You can learn more about Service Connector environment variable naming convention.

Supported compute service

  • Azure App Service
  • Azure Spring Cloud

Supported Authentication types and client types

Client Type System-assigned Managed Identity User-assigned Managed Identity Secret/ConnectionString Service Principal
.NET yes icon yes icon yes icon yes icon
Java yes icon yes icon yes icon yes icon
Java - Spring Boot yes icon
Node.js yes icon yes icon yes icon yes icon
Python yes icon yes icon yes icon yes icon

Default environment variable names or application properties

.NET, Java, Node.JS, Python

Secret/ConnectionString

Default environment variable name Description Example value
AZURE_STORAGEQUEUE_CONNECTIONSTRING Queue storage connection string DefaultEndpointsProtocol=https;AccountName={accountName};AccountKey={****};EndpointSuffix=core.windows.net

System-assigned Managed Identity

Default environment variable name Description Example value
AZURE_STORAGEQUEUE_RESOURCEENDPOINT Queue storage endpoint https://{StorageAccountName}.queue.core.windows.net/

User-assigned Managed Identity

Default environment variable name Description Example value
AZURE_STORAGEQUEUE_RESOURCEENDPOINT Queue storage endpoint https://{storageAccountName}.queue.core.windows.net/
AZURE_STORAGEQUEUE_CLIENTID Your client ID {yourClientID}

Service Principal

Default environment variable name Description Example value
AZURE_STORAGEQUEUE_RESOURCEENDPOINT Queue storage endpoint https://{storageAccountName}.queue.core.windows.net/
AZURE_STORAGEQUEUE_CLIENTID Your client ID {yourClientID}
AZURE_STORAGEQUEUE_CLIENTSECRET Your client secret {yourClientSecret}
AZURE_STORAGEQUEUE_TENANTID Your tenant ID {yourTenantID}

Java - Spring Boot

Secret/ConnectionString

Application properties Description Example value
azure.storage.account-name Queue storage account name {storageAccountName}
azure.storage.account-key Queue storage account key {yourSecret}

Next steps

Follow the tutorials listed below to learn more about Service Connector.

[!div class="nextstepaction"] Learn about Service Connector concepts