Skip to content

Commit 9fadace

Browse files
authored
Merge pull request #202768 from maud-lv/ml-sc-syntaxfix
update syntax
2 parents 2cb6486 + e637909 commit 9fadace

16 files changed

+384
-352
lines changed

articles/service-connector/how-to-integrate-app-configuration.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,36 +29,39 @@ This page shows the supported authentication types and client types of Azure App
2929

3030
## Default environment variable names or application properties
3131

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+
3235
### .NET, Java, Node.JS, Python
3336

3437
#### Secret / connection string
3538

3639
> [!div class="mx-tdBreakAll"]
3740
> | Default environment variable name | Description | Sample value |
3841
> | --------------------------------- | ------------| ------------ |
39-
> | AZURE_APPCONFIGURATION_CONNECTIONSTRING | Your App Configuration Connection String | `Endpoint=https://{AppConfigurationName}.azconfig.io;Id={ID};Secret={secret}` |
42+
> | AZURE_APPCONFIGURATION_CONNECTIONSTRING | Your App Configuration Connection String | `Endpoint=https://<App-Configuration-name>.azconfig.io;Id=<ID>;Secret=<secret>` |
4043
4144
#### System-assigned managed identity
4245

43-
| Default environment variable name | Description | Sample value |
44-
|-----------------------------------|------------------------------|----------------------------------------------|
45-
| AZURE_APPCONFIGURATION_ENDPOINT | App Configuration endpoint | `https://{AppConfigurationName}.azconfig.io` |
46+
| Default environment variable name | Description | Sample value |
47+
|-----------------------------------|------------------------------|------------------------------------------------|
48+
| AZURE_APPCONFIGURATION_ENDPOINT | App Configuration endpoint | `https://<App-Configuration-name>.azconfig.io` |
4649

4750
#### User-assigned managed identity
4851

4952
| Default environment variable name | Description | Sample value |
5053
|-----------------------------------|----------------------------|-----------------------------------------------|
51-
| AZURE_APPCONFIGURATION_ENDPOINT | App Configuration Endpoint | `https://{AppConfigurationName}.azconfig.io` |
52-
| AZURE_APPCONFIGURATION_CLIENTID | Your client ID | `UserAssignedMiClientId` |
54+
| AZURE_APPCONFIGURATION_ENDPOINT | App Configuration Endpoint | `https://App-Configuration-name>.azconfig.io` |
55+
| AZURE_APPCONFIGURATION_CLIENTID | Your client ID | `<client-ID>` |
5356

5457
#### Service principal
5558

5659
| Default environment variable name | Description | Sample value |
5760
|-------------------------------------|----------------------------|----------------------------------------------|
58-
| AZURE_APPCONFIGURATION_ENDPOINT | App Configuration Endpoint | `https://{AppConfigurationName}.azconfig.io` |
59-
| AZURE_APPCONFIGURATION_CLIENTID | Your client ID | `{yourClientID}` |
60-
| AZURE_APPCONFIGURATION_CLIENTSECRET | Your client secret | `{yourClientSecret}` |
61-
| AZURE_APPCONFIGURATION_TENANTID | Your tenant ID | `{yourTenantID}` |
61+
| AZURE_APPCONFIGURATION_ENDPOINT | App Configuration Endpoint | `https://<AppConfigurationName>.azconfig.io` |
62+
| AZURE_APPCONFIGURATION_CLIENTID | Your client ID | `<client-ID>` |
63+
| AZURE_APPCONFIGURATION_CLIENTSECRET | Your client secret | `<client-secret>` |
64+
| AZURE_APPCONFIGURATION_TENANTID | Your tenant ID | `<tenant-ID>` |
6265

6366
## Next steps
6467

articles/service-connector/how-to-integrate-confluent-kafka.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,25 @@ This page shows the supported authentication types and client types of Apache ka
3131

3232
## Default environment variable names or application properties
3333

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+
3436
### .NET, Java, Node.JS and Python
3537

36-
| Default environment variable name | Description | Example value |
37-
| --- | --- | --- |
38-
| AZURE_CONFLUENTCLOUDKAFKA_BOOTSTRAPSERVER | Your Kafka bootstrap server | `pkc-{serverName}.eastus.azure.confluent.cloud:9092` |
39-
| AZURE_CONFLUENTCLOUDKAFKA_KAFKASASLCONFIG | Your Kafka SASL configuration | `org.apache.kafka.common.security.plain.PlainLoginModule required username='{bootstrapServerKey}' password='{bootstrapServerSecret}';` |
40-
| AZURE_CONFLUENTCLOUDSCHEMAREGISTRY_URL | Your Confluent registry URL | `https://psrc-{serverName}.westus2.azure.confluent.cloud` |
41-
| AZURE_CONFLUENTCLOUDSCHEMAREGISTRY_USERINFO | Your Confluent registry user information | `{schemaRegistryKey} + ":" + {schemaRegistrySecret}` |
38+
| Default environment variable name | Description | Example value |
39+
|---------------------------------------------|------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
40+
| AZURE_CONFLUENTCLOUDKAFKA_BOOTSTRAPSERVER | Your Kafka bootstrap server | `pkc-<server-name>.eastus.azure.confluent.cloud:9092` |
41+
| AZURE_CONFLUENTCLOUDKAFKA_KAFKASASLCONFIG | Your Kafka SASL configuration | `org.apache.kafka.common.security.plain.PlainLoginModule required username='<Bootstrap-server-key>' password='<Bootstrap-server-secret>';` |
42+
| AZURE_CONFLUENTCLOUDSCHEMAREGISTRY_URL | Your Confluent registry URL | `https://psrc-<server-name>.westus2.azure.confluent.cloud` |
43+
| AZURE_CONFLUENTCLOUDSCHEMAREGISTRY_USERINFO | Your Confluent registry user information | `<schema-registry-key>:<schema-registry-secret>` |
4244

4345
### Spring Boot
4446

45-
| Default environment variable name | Description | Example value |
46-
| --- | --- | --- |
47-
| spring.kafka.properties.bootstrap.servers | Your Kafka bootstrap server | `pkc-{serverName}.eastus.azure.confluent.cloud:9092` |
48-
| spring.kafka.properties.sasl.jaas.config | Your Kafka SASL configuration | `org.apache.kafka.common.security.plain.PlainLoginModule required username='{bootstrapServerKey}' password='{bootstrapServerSecret}';` |
49-
| 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 |
48+
|--------------------------------------------------------------|------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
49+
| spring.kafka.properties.bootstrap.servers | Your Kafka bootstrap server | `pkc-<server-name>.eastus.azure.confluent.cloud:9092` |
50+
| spring.kafka.properties.sasl.jaas.config | Your Kafka SASL configuration | `org.apache.kafka.common.security.plain.PlainLoginModule required username='<Bootstrap-server-key>' password='<Bootstrap-server-secret>';` |
51+
| 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>` |
5153

5254
## Next steps
5355

articles/service-connector/how-to-integrate-cosmos-db.md

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -31,41 +31,43 @@ This page shows the supported authentication types and client types of Azure Cos
3131

3232
## Default environment variable names or application properties
3333

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+
3436
### Secret / Connection string
3537

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 |
39+
|-----------------------------------|-----------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
40+
| 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>@` |
3941

4042
### System-assigned managed identity
4143

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 |
45+
|--------------------------------------|--------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
46+
| 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/` |
4749

4850
### User-assigned managed identity
4951

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 |
53+
|--------------------------------------|--------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
54+
| 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/` |
5759

5860
### Service principal
5961

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 |
63+
|--------------------------------------|--------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
64+
| 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/` |
6971

7072
## Next steps
7173

0 commit comments

Comments
 (0)