You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-connector/how-to-integrate-app-configuration.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,36 +29,39 @@ This page shows the supported authentication types and client types of Azure App
29
29
30
30
## Default environment variable names or application properties
31
31
32
+
Use the connection details below to connect compute services to Azure App Configuration stores instances. For each example below, replace the placeholder texts
33
+
`<App-Configuration-name>`, `<ID>`, `<secret>`, `<client-ID>`, `<client-secret>`, and `<tenant-ID>` with your App Configuration store name, ID, secret, client ID, client secret and tenant ID.
34
+
32
35
### .NET, Java, Node.JS, Python
33
36
34
37
#### Secret / connection string
35
38
36
39
> [!div class="mx-tdBreakAll"]
37
40
> | Default environment variable name | Description | Sample value |
Copy file name to clipboardExpand all lines: articles/service-connector/how-to-integrate-confluent-kafka.md
+14-12Lines changed: 14 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,23 +31,25 @@ This page shows the supported authentication types and client types of Apache ka
31
31
32
32
## Default environment variable names or application properties
33
33
34
+
Use the connection details below to connect compute services to Kafka. For each example below, replace the placeholder texts `<server-name>`, `<Bootstrap-server-key>`, `<Bootstrap-server-secret>`, `<schema-registry-key>`, and `<schema-registry-secret>` with your server name, Bootstrap server key, Bootstrap server secret, schema registry key, and schema registry secret.
35
+
34
36
### .NET, Java, Node.JS and Python
35
37
36
-
| Default environment variable name | Description | Example value |
37
-
|---|---|---|
38
-
| AZURE_CONFLUENTCLOUDKAFKA_BOOTSTRAPSERVER | Your Kafka bootstrap server |`pkc-{serverName}.eastus.azure.confluent.cloud:9092`|
| spring.kafka.properties.schema.registry.url | Your Confluent registry URL |`https://psrc-{serverName}.westus2.azure.confluent.cloud`|
50
-
| spring.kafka.properties.schema.registry.basic.auth.user.info | Your Confluent registry user information |`{schemaRegistryKey} + ":" + {schemaRegistrySecret}`|
47
+
| Default environment variable name | Description | Example value|
| spring.kafka.properties.schema.registry.url | Your Confluent registry URL |`https://psrc-<server-name>.westus2.azure.confluent.cloud`|
52
+
| spring.kafka.properties.schema.registry.basic.auth.user.info | Your Confluent registry user information |`<schema-registry-key>:<schema-registry-secret>`|
Copy file name to clipboardExpand all lines: articles/service-connector/how-to-integrate-cosmos-db.md
+26-24Lines changed: 26 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,41 +31,43 @@ This page shows the supported authentication types and client types of Azure Cos
31
31
32
32
## Default environment variable names or application properties
33
33
34
+
Use the connection details below to connect compute services to Cosmos DB. For each example below, replace the placeholder texts `<mongo-db-admin-user>`, `<password>`, `<mongo-db-server>`, `<subscription-ID>`, `<resource-group-name>`, `<database-server>`, `<client-secret>`, and `<tenant-id>` with your Mongo DB Admin username, password, Mongo DB server, subscription ID, resource group name, database server, client secret and tenant ID.
35
+
34
36
### Secret / Connection string
35
37
36
-
| Default environment variable name | Description | Example value |
37
-
|---|---|---|
38
-
| AZURE_COSMOS_CONNECTIONSTRING | Mango DB in Cosmos DB connection string |`mongodb://{mango-db-admin-user}:{********}@{mango-db-server}.mongo.cosmos.azure.com:10255/?ssl=true&replicaSet=globaldb&retrywrites=false&maxIdleTimeMS=120000&appName=@{mango-db-server}@`|
38
+
| Default environment variable name | Description | Example value|
| AZURE_COSMOS_CONNECTIONSTRING | Mongo DB in Cosmos DB connection string |`mongodb://<mongo-db-admin-user>:<password>@<mongo-db-server>.mongo.cosmos.azure.com:10255/?ssl=true&replicaSet=globaldb&retrywrites=false&maxIdleTimeMS=120000&appName=@<mongo-db-server>@`|
39
41
40
42
### System-assigned managed identity
41
43
42
-
| Default environment variable name | Description | Example value |
43
-
|---|---|---|
44
-
| AZURE_COSMOS_LISTCONNECTIONSTRINGURL | The URL to get the connection string |`https://management.azure.com/subscriptions/{your-subscription-id}/resourceGroups/{your-resource-group-name}/providers/Microsoft.DocumentDB/databaseAccounts/{your-database-server}/listConnectionStrings?api-version=2021-04-15`|
45
-
| AZURE_COSMOS_SCOPE | Your managed identity scope |`https://management.azure.com/.default`|
46
-
| AZURE_COSMOS_RESOURCEENDPOINT | Your resource endpoint|`https://{your-database-server}.documents.azure.com:443/`|
44
+
| Default environment variable name | Description | Example value|
| AZURE_COSMOS_LISTCONNECTIONSTRINGURL | The URL to get the connection string |`https://management.azure.com/subscriptions/<subscription-ID>/resourceGroups/<resource-group-name>/providers/Microsoft.DocumentDB/databaseAccounts/<database-server>/listConnectionStrings?api-version=2021-04-15`|
47
+
| AZURE_COSMOS_SCOPE | Your managed identity scope |`https://management.azure.com/.default`|
48
+
| AZURE_COSMOS_RESOURCEENDPOINT | Your resource endpoint|`https://<database-server>.documents.azure.com:443/`|
47
49
48
50
### User-assigned managed identity
49
51
50
-
| Default environment variable name | Description | Example value |
51
-
|---|---|---|
52
-
| AZURE_COSMOS_LISTCONNECTIONSTRINGURL | The URL to get the connection string |`https://management.azure.com/subscriptions/{your-subscription-id}/resourceGroups/{your-resource-group-name}/providers/Microsoft.DocumentDB/databaseAccounts/{your-database-server}/listConnectionStrings?api-version=2021-04-15`|
53
-
| AZURE_COSMOS_SCOPE | Your managed identity scope |`https://management.azure.com/.default`|
54
-
| AZURE_COSMOS_CLIENTID | Your client secret ID |`{client-id}`|
55
-
| AZURE_COSMOS_SUBSCRIPTIONID | Your subscription ID |`{your-subscription-id}`|
56
-
| AZURE_COSMOS_RESOURCEENDPOINT | Your resource endpoint|`https://{your-database-server}.documents.azure.com:443/`|
52
+
| Default environment variable name | Description | Example value|
| AZURE_COSMOS_LISTCONNECTIONSTRINGURL | The URL to get the connection string |`https://management.azure.com/subscriptions/<subscription-ID>/resourceGroups/<resource-group-name>/providers/Microsoft.DocumentDB/databaseAccounts/<database-server>/listConnectionStrings?api-version=2021-04-15`|
55
+
| AZURE_COSMOS_SCOPE | Your managed identity scope |`https://management.azure.com/.default`|
56
+
| AZURE_COSMOS_CLIENTID | Your client secret ID |`<client-ID>`|
57
+
| AZURE_COSMOS_SUBSCRIPTIONID | Your subscription ID |`<subscription-ID>`|
58
+
| AZURE_COSMOS_RESOURCEENDPOINT | Your resource endpoint|`https://<database-server>.documents.azure.com:443/`|
57
59
58
60
### Service principal
59
61
60
-
| Default environment variable name | Description | Example value |
61
-
|---|---|---|
62
-
| AZURE_COSMOS_LISTCONNECTIONSTRINGURL | The URL to get the connection string |`https://management.azure.com/subscriptions/{your-subscription-id}/resourceGroups/{your-resource-group-name}/providers/Microsoft.DocumentDB/databaseAccounts/{your-database-server}/listConnectionStrings?api-version=2021-04-15`|
63
-
| AZURE_COSMOS_SCOPE | Your managed identity scope |`https://management.azure.com/.default`|
64
-
| AZURE_COSMOS_CLIENTID | Your client secret ID |`{client-id}`|
65
-
| AZURE_COSMOS_CLIENTSECRET | Your client secret secret |`{client-secret}`|
66
-
| AZURE_COSMOS_TENANTID | Your tenant ID |`{tenant-id}`|
67
-
| AZURE_COSMOS_SUBSCRIPTIONID | Your subscription ID |`{your-subscription-id}`|
68
-
| AZURE_COSMOS_RESOURCEENDPOINT | Your resource endpoint|`https://{your-database-server}.documents.azure.com:443/`|
62
+
| Default environment variable name | Description | Example value|
| AZURE_COSMOS_LISTCONNECTIONSTRINGURL | The URL to get the connection string |`https://management.azure.com/subscriptions/<subscription-ID>/resourceGroups/<resource-group-name>/providers/Microsoft.DocumentDB/databaseAccounts/<database-server>/listConnectionStrings?api-version=2021-04-15`|
65
+
| AZURE_COSMOS_SCOPE | Your managed identity scope |`https://management.azure.com/.default`|
66
+
| AZURE_COSMOS_CLIENTID | Your client secret ID |`<client-ID>`|
67
+
| AZURE_COSMOS_CLIENTSECRET | Your client secret |`<client-secret>`|
68
+
| AZURE_COSMOS_TENANTID | Your tenant ID |`<tenant-ID>`|
69
+
| AZURE_COSMOS_SUBSCRIPTIONID | Your subscription ID |`<subscription-ID>`|
70
+
| AZURE_COSMOS_RESOURCEENDPOINT | Your resource endpoint|`https://<database-server>.documents.azure.com:443/`|
0 commit comments