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 pathusers.template.json
More file actions
25 lines (25 loc) · 786 Bytes
/
users.template.json
File metadata and controls
25 lines (25 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"$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/users",
"name": "[concat(parameters('ApimServiceName'), '/john-doe-contoso-com')]",
"apiVersion": "2018-01-01",
"scale": null,
"properties": {
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@contoso.com",
"state": "active",
"note": "Internal consumer of our APIs",
"confirmation": "invite"
}
}
]
}