File size: 1,422 Bytes
065fee7 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"commonPrefix": {
"type": "string",
"defaultValue": "sdk-live-test",
"metadata": {
"description": "Common prefix for all live test resources."
}
},
"baseName": {
"type": "string",
"metadata": {
"description": "A distinct identifier for each run. Used as resource name suffix."
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "The location for the test resource. Defaults to resource group's location."
}
},
"sku": {
"type": "string",
"defaultValue": "A0",
"metadata": {
"description": "The SKU of the test resource. Defaults to A0."
}
},
"testApplicationOid": {
"type": "string",
"metadata": {
"description": "The client OID to grant access to test resources."
}
}
},
"variables": {
"serviceAdminRoleId": "f8da80de-1ff9-4747-ad80-a19b7f6079e3",
"resourceName": "[format('{0}-{1}', parameters('commonPrefix'), parameters('baseName'))]"
},
"resources": [
],
"outputs": {
"AGRIFOOD_ENDPOINT": {
"type": "string",
"value": "https://internal-sdk-live-test-py.farmbeats.azure.net"
}
}
}
|