Skip to content

Commit e77b49e

Browse files
authored
resolves #33964
resolves MicrosoftDocs/azure-docs#33964
1 parent ab588de commit e77b49e

File tree

1 file changed

+20
-23
lines changed

1 file changed

+20
-23
lines changed

articles/api-management/api-management-howto-use-managed-service-identity.md

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,26 @@ For example, a complete Azure Resource Manager template might look like the foll
4646

4747
```json
4848
{
49-
"$schema": "https://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
50-
"contentVersion": "0.9.0.0"
51-
},
52-
"resources": [
53-
{
54-
"apiVersion": "2017-03-01",
55-
"name": "contoso",
56-
"type": "Microsoft.ApiManagement/service",
57-
"location": "[resourceGroup().location]",
58-
"tags": {},
59-
"sku": {
60-
"name": "Developer",
61-
"capacity": "1"
62-
},
63-
"properties": {
64-
"publisherEmail": "[email protected]",
65-
"publisherName": "Contoso"
66-
},
67-
"identity": {
68-
"type": "systemAssigned"
69-
}
70-
}
71-
]
49+
"$schema": "https://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
50+
"contentVersion": "0.9.0.0",
51+
"resources": [{
52+
"apiVersion": "2017-03-01",
53+
"name": "contoso",
54+
"type": "Microsoft.ApiManagement/service",
55+
"location": "[resourceGroup().location]",
56+
"tags": {},
57+
"sku": {
58+
"name": "Developer",
59+
"capacity": "1"
60+
},
61+
"properties": {
62+
"publisherEmail": "[email protected]",
63+
"publisherName": "Contoso"
64+
},
65+
"identity": {
66+
"type": "systemAssigned"
67+
}
68+
}]
7269
}
7370
```
7471
## Use the managed service identity to access other resources

0 commit comments

Comments
 (0)