{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "tenantId": { "type": "string", "defaultValue": "72f988bf-86f1-41af-91ab-2d7cd011db47", "metadata": { "description": "The tenant ID to which the application and resources belong." } }, "testApplicationId": { "type": "string", "metadata": { "description": "The application client ID used to run tests." } } }, "resources": [], "outputs": { "AZURE_TENANT_ID": { "type": "string", "value": "[parameters('tenantId')]" }, "AZURE_CLIENT_ID": { "type": "string", "value": "[parameters('testApplicationId')]" } } }