mirror of https://github.com/OpenVidu/openvidu.git
openvidu-deployment: azure - changed "defaultName" of PublicIpAddress and changed Action Group name
parent
1d4bcdf54f
commit
b7e715361e
|
|
@ -1530,7 +1530,7 @@ module webhookModule '../../shared/webhookdeployment.json' = {
|
||||||
}
|
}
|
||||||
|
|
||||||
resource actionGroupScaleIn 'Microsoft.Insights/actionGroups@2023-01-01' = {
|
resource actionGroupScaleIn 'Microsoft.Insights/actionGroups@2023-01-01' = {
|
||||||
name: 'actiongrouptest'
|
name: 'actiongroupScaleIn'
|
||||||
location: 'global'
|
location: 'global'
|
||||||
properties: {
|
properties: {
|
||||||
groupShortName: 'scaleinag'
|
groupShortName: 'scaleinag'
|
||||||
|
|
@ -1675,7 +1675,9 @@ resource netInterfaceMasterNode 'Microsoft.Network/networkInterfaces@2023-11-01'
|
||||||
id: openviduMasterNodeASG.id
|
id: openviduMasterNodeASG.id
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
publicIPAddress: isEmptyIp ? null : {
|
publicIPAddress: isEmptyIp
|
||||||
|
? null
|
||||||
|
: {
|
||||||
id: ipNew ? publicIP_OV_ifNew.id : publicIP_OV_ifExisting.id
|
id: ipNew ? publicIP_OV_ifNew.id : publicIP_OV_ifExisting.id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@
|
||||||
"publicIpAddress": "Previously created Public IP address for the OpenVidu Deployment. Blank will generate a public IP"
|
"publicIpAddress": "Previously created Public IP address for the OpenVidu Deployment. Blank will generate a public IP"
|
||||||
},
|
},
|
||||||
"defaultValue": {
|
"defaultValue": {
|
||||||
"publicIpAddressName": "defaultName"
|
"publicIpAddressName": "ov-publicIpAddress"
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
"hideNone": true,
|
"hideNone": true,
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,6 @@ param ownPublicCertificate string = ''
|
||||||
@description('If certificate type is \'owncert\', this parameter will be used to specify the private certificate')
|
@description('If certificate type is \'owncert\', this parameter will be used to specify the private certificate')
|
||||||
param ownPrivateCertificate string = ''
|
param ownPrivateCertificate string = ''
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@description('Name of the PublicIPAddress resource in Azure when using certificateType \'owncert\' or \'letsencrypt\'')
|
@description('Name of the PublicIPAddress resource in Azure when using certificateType \'owncert\' or \'letsencrypt\'')
|
||||||
param publicIpAddressObject object
|
param publicIpAddressObject object
|
||||||
|
|
||||||
|
|
@ -1899,7 +1897,7 @@ module webhookModule '../../shared/webhookdeployment.json' = {
|
||||||
}
|
}
|
||||||
|
|
||||||
resource actionGroupScaleIn 'Microsoft.Insights/actionGroups@2023-01-01' = {
|
resource actionGroupScaleIn 'Microsoft.Insights/actionGroups@2023-01-01' = {
|
||||||
name: 'actiongrouptest'
|
name: 'actiongroupScaleIn'
|
||||||
location: 'global'
|
location: 'global'
|
||||||
properties: {
|
properties: {
|
||||||
groupShortName: 'scaleinag'
|
groupShortName: 'scaleinag'
|
||||||
|
|
@ -2007,7 +2005,9 @@ resource LoadBalancer 'Microsoft.Network/loadBalancers@2024-05-01' = {
|
||||||
{
|
{
|
||||||
name: lbFrontEndName
|
name: lbFrontEndName
|
||||||
properties: {
|
properties: {
|
||||||
publicIPAddress: isEmptyIp ? null : {
|
publicIPAddress: isEmptyIp
|
||||||
|
? null
|
||||||
|
: {
|
||||||
id: ipNew ? publicIP_OV_ifNew.id : publicIP_OV_ifExisting.id
|
id: ipNew ? publicIP_OV_ifNew.id : publicIP_OV_ifExisting.id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@
|
||||||
"publicIpAddress": "Previously created Public IP address for the OpenVidu Deployment. Blank will generate a public IP"
|
"publicIpAddress": "Previously created Public IP address for the OpenVidu Deployment. Blank will generate a public IP"
|
||||||
},
|
},
|
||||||
"defaultValue": {
|
"defaultValue": {
|
||||||
"publicIpAddressName": "defaultName"
|
"publicIpAddressName": "ov-publicIpAddress"
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
"hideNone": true,
|
"hideNone": true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue