forked from Azure/azure-api-management-devops-resource-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscriptions.template.json
More file actions
23 lines (23 loc) · 902 Bytes
/
subscriptions.template.json
File metadata and controls
23 lines (23 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"ApimServiceName": {
"type": "string"
}
},
"resources": [
{
"type": "Microsoft.ApiManagement/service/subscriptions",
"name": "[concat(parameters('ApimServiceName'), '/53c765632095310385070001')]",
"apiVersion": "2018-01-01",
"scale": null,
"properties": {
"userId": "[resourceId('Microsoft.ApiManagement/service/users', parameters('ApimServiceName'), 'john-doe-contoso-com')]",
"productId": "[resourceId('Microsoft.ApiManagement/service/products', parameters('ApimServiceName'), 'starter')]",
"displayName": "Starter product subscription",
"state": "active"
}
}
]
}