mirror of https://github.com/OpenVidu/openvidu.git
116 lines
4.4 KiB
JSON
116 lines
4.4 KiB
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"automationAccountName": {
|
|
"type": "String",
|
|
"metadata": {
|
|
"description": "Automation account name"
|
|
}
|
|
},
|
|
"webhookName": {
|
|
"type": "String",
|
|
"metadata": {
|
|
"description": "Webhook Name"
|
|
}
|
|
},
|
|
"runbookName": {
|
|
"type": "String",
|
|
"metadata": {
|
|
"description": "Runbook Name for which webhook will be created"
|
|
}
|
|
},
|
|
"WebhookExpiryTime": {
|
|
"type": "String",
|
|
"metadata": {
|
|
"description": "Webhook Expiry time"
|
|
}
|
|
},
|
|
"_artifactsLocation": {
|
|
"defaultValue": "https://raw.githubusercontent.com/OpenVidu/openvidu/refs/heads/master/openvidu-deployment/pro/shared/scaleInRunbook.ps1",
|
|
"type": "String",
|
|
"metadata": {
|
|
"description": "URI to artifacts location"
|
|
}
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.Automation/automationAccounts",
|
|
"apiVersion": "2020-01-13-preview",
|
|
"name": "[parameters('automationAccountName')]",
|
|
"location": "[resourceGroup().location]",
|
|
"identity": {
|
|
"type": "SystemAssigned"
|
|
},
|
|
"properties": {
|
|
"sku": {
|
|
"name": "Basic"
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "runbooks",
|
|
"apiVersion": "2018-06-30",
|
|
"name": "[parameters('runbookName')]",
|
|
"location": "[resourceGroup().location]",
|
|
"dependsOn": [
|
|
"[parameters('automationAccountName')]"
|
|
],
|
|
"properties": {
|
|
"runbookType": "PowerShell72",
|
|
"logProgress": "true",
|
|
"description": "Scale In Runbook",
|
|
"publishContentLink": {
|
|
"uri": "[parameters('_artifactsLocation')]",
|
|
"version": "1.0.0.0"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "webhooks",
|
|
"apiVersion": "2018-06-30",
|
|
"name": "[parameters('webhookName')]",
|
|
"dependsOn": [
|
|
"[parameters('automationAccountName')]",
|
|
"[parameters('runbookName')]"
|
|
],
|
|
"properties": {
|
|
"isEnabled": true,
|
|
"expiryTime": "[parameters('WebhookExpiryTime')]",
|
|
"runbook": {
|
|
"name": "[parameters('runbookName')]"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"type": "Microsoft.Authorization/roleAssignments",
|
|
"apiVersion": "2022-04-01",
|
|
"name": "[guid(format('roleAutomationContributorAssignmentAutomationAccount{0}', parameters('automationAccountName')))]",
|
|
"properties": {
|
|
"roleDefinitionId": "[subscriptionResourceId('Microsoft.Authorization/roleDefinitions', 'b24988ac-6180-42a0-ab88-20f7382dd24c')]",
|
|
"principalId": "[reference(resourceId('Microsoft.Automation/automationAccounts', parameters('automationAccountName')), '2023-11-01', 'full').identity.principalId]",
|
|
"principalType": "ServicePrincipal"
|
|
},
|
|
"dependsOn": [
|
|
"[resourceId('Microsoft.Automation/automationAccounts', parameters('automationAccountName'))]"
|
|
]
|
|
}
|
|
],
|
|
"outputs": {
|
|
"webhookUri": {
|
|
"type": "String",
|
|
"value": "[reference(parameters('webhookName')).uri]"
|
|
},
|
|
"automationAccountId": {
|
|
"type": "string",
|
|
"value": "[resourceId('Microsoft.Automation/automationAccounts', parameters('automationAccountName'))]"
|
|
},
|
|
"webhookId": {
|
|
"type": "string",
|
|
"value": "[resourceId('Microsoft.Automation/automationAccounts/webhooks', parameters('automationAccountName'), parameters('webhookName'))]"
|
|
}
|
|
}
|
|
} |