Skip to content

Commit 2b0529b

Browse files
authored
Merge pull request #127579 from erwinkramer/main
Update authenticate-with-managed-identity.md
2 parents 28625eb + d4d95a0 commit 2b0529b

1 file changed

Lines changed: 9 additions & 11 deletions

File tree

articles/logic-apps/authenticate-with-managed-identity.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ This example shows the underlying connection resource definition for a connector
11561156
"properties": {
11571157
"alternativeParameterValues": {},
11581158
"api": {
1159-
"id": "[subscriptionResourceId('Microsoft.Web/locations/managedApis', parameters('location'), 'azureautomation')]"
1159+
"id": "[subscriptionResourceId('Microsoft.Web/locations/managedApis', parameters('location'), '<connector-name>')]"
11601160
},
11611161
"authenticatedUser": {},
11621162
"connectionState": "Enabled",
@@ -1184,19 +1184,18 @@ This example shows the underlying connection resource definition for a connector
11841184
"location": "[parameters('location')]",
11851185
"kind": "V1",
11861186
"properties": {
1187-
"alternativeParameterValues":{},
1187+
"alternativeParameterValues": {},
11881188
"api": {
1189-
"id": "[subscriptionResourceId('Microsoft.Web/locations/managedApis', parameters('location'), 'azureblob')]"
1189+
"id": "[subscriptionResourceId('Microsoft.Web/locations/managedApis', parameters('location'), '<connector-name>')]"
11901190
},
11911191
"authenticatedUser": {},
11921192
"connectionState": "Enabled",
11931193
"customParameterValues": {},
11941194
"displayName": "[variables('connections_<connector-name>_name')]",
1195-
"parameterValueSet":{
1195+
"parameterValueSet": {
11961196
"name": "managedIdentityAuth",
11971197
"values": {}
1198-
},
1199-
"parameterValueType": "Alternative"
1198+
}
12001199
}
12011200
}
12021201
```
@@ -1216,8 +1215,8 @@ This example shows the underlying connection resource definition for a connector
12161215
```json
12171216
{
12181217
"type": "Microsoft.Web/connections",
1219-
"name": "[variables('connections_<connector-name>_name')]",
12201218
"apiVersion": "[providers('Microsoft.Web','connections').apiVersions[0]]",
1219+
"name": "[variables('connections_<connector-name>_name')]",
12211220
"location": "[parameters('location')]",
12221221
"kind": "V2",
12231222
"properties": {
@@ -1251,19 +1250,18 @@ This example shows the underlying connection resource definition for a connector
12511250
"location": "[parameters('location')]",
12521251
"kind": "V2",
12531252
"properties": {
1254-
"alternativeParameterValues":{},
1253+
"alternativeParameterValues": {},
12551254
"api": {
12561255
"id": "[subscriptionResourceId('Microsoft.Web/locations/managedApis', parameters('location'), '<connector-name>')]"
12571256
},
12581257
"authenticatedUser": {},
12591258
"connectionState": "Enabled",
12601259
"customParameterValues": {},
12611260
"displayName": "[variables('connections_<connector-name>_name')]",
1262-
"parameterValueSet":{
1261+
"parameterValueSet": {
12631262
"name": "managedIdentityAuth",
12641263
"values": {}
1265-
},
1266-
"parameterValueType": "Alternative"
1264+
}
12671265
}
12681266
}
12691267
```

0 commit comments

Comments
 (0)