74 строки
2.7 KiB
JSON
74 строки
2.7 KiB
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"baseName": {
|
|
"type": "string",
|
|
"defaultValue": "[resourceGroup().name]",
|
|
"metadata": {
|
|
"description": "The base resource name."
|
|
}
|
|
},
|
|
"location": {
|
|
"type": "string",
|
|
"defaultValue": "[resourceGroup().location]",
|
|
"metadata": {
|
|
"description": "The location of the resource. By default, this is the same as the resource group."
|
|
}
|
|
},
|
|
"endpointPrefix": {
|
|
"defaultValue": "healthinsights",
|
|
"type": "string"
|
|
},
|
|
"cognitiveServicesEndpointSuffix": {
|
|
"defaultValue": ".cognitiveservices.azure.com",
|
|
"type": "string"
|
|
},
|
|
"testApplicationOid": {
|
|
"type": "string",
|
|
"metadata": {
|
|
"description": "The principal to assign the role to. This is application object id."
|
|
}
|
|
}
|
|
},
|
|
"variables": {
|
|
"roleDefinitionId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908')]",
|
|
"uniqueSubDomainName": "[format('{0}-{1}', parameters('baseName'), parameters('endpointPrefix'))]",
|
|
"endpointValue": "[format('https://{0}-{1}{2}', parameters('baseName'), parameters('endpointPrefix'), parameters('cognitiveServicesEndpointSuffix'))]"
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.CognitiveServices/accounts",
|
|
"apiVersion": "2022-12-01",
|
|
"name": "[variables('uniqueSubDomainName')]",
|
|
"location":"[parameters('location')]",
|
|
"sku": {
|
|
"name": "S0"
|
|
},
|
|
"kind": "HealthInsights",
|
|
"properties": {
|
|
"customSubDomainName": "[variables('uniqueSubDomainName')]"
|
|
}
|
|
},
|
|
{
|
|
"type": "Microsoft.Authorization/roleAssignments",
|
|
"apiVersion": "2018-09-01-preview",
|
|
"name": "[guid(resourceGroup().id)]",
|
|
"properties": {
|
|
"roleDefinitionId": "[variables('roleDefinitionId')]",
|
|
"principalId": "[parameters('testApplicationOid')]"
|
|
}
|
|
}
|
|
],
|
|
"outputs": {
|
|
"HEALTHINSIGHTS_KEY": {
|
|
"type": "string",
|
|
"value": "[listKeys(resourceId('Microsoft.CognitiveServices/accounts',variables('uniqueSubDomainName')), '2017-04-18').key1]"
|
|
},
|
|
"HEALTHINSIGHTS_ENDPOINT": {
|
|
"type": "string",
|
|
"value": "[variables('endpointValue')]"
|
|
}
|
|
}
|
|
}
|