@@ -61,10 +61,10 @@ ms.author: wchi
61
61
62
62
` ` ` java
63
63
// Uncomment the following lines according to the authentication type.
64
- // for system managed identity
64
+ // for system- managed identity
65
65
// DefaultAzureCredential defaultCredential = new DefaultAzureCredentialBuilder().build ();
66
66
67
- // for user assigned managed identity
67
+ // for user- assigned managed identity
68
68
// DefaultAzureCredential defaultCredential = new DefaultAzureCredentialBuilder ()
69
69
// .managedIdentityClientId(System.getenv(" AZURE_APPCONFIGURATION_CLIENTID" ))
70
70
// .build ();
@@ -98,10 +98,10 @@ ms.author: wchi
98
98
from azure.identity import ManagedIdentityCredential, ClientSecretCredential
99
99
100
100
# Uncomment the following lines according to the authentication type.
101
- # system assigned managed identity
101
+ # system- assigned managed identity
102
102
# cred = ManagedIdentityCredential()
103
103
104
- # user assigned managed identity
104
+ # user- assigned managed identity
105
105
# managed_identity_client_id = os.getenv('AZURE_APPCONFIGURATION_CLIENTID')
106
106
# cred = ManagedIdentityCredential(client_id=managed_identity_client_id)
107
107
@@ -130,10 +130,10 @@ ms.author: wchi
130
130
const appConfig = require(" @azure/app-configuration" );
131
131
132
132
// Uncomment the following lines according to the authentication type.
133
- // for system assigned managed identity
133
+ // for system- assigned managed identity
134
134
// const credential = new DefaultAzureCredential ();
135
135
136
- // for user assigned managed identity
136
+ // for user- assigned managed identity
137
137
// const clientId = process.env.AZURE_APPCONFIGURATION_CLIENTID;
138
138
// const credential = new DefaultAzureCredential({
139
139
// managedIdentityClientId: clientId
0 commit comments