Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
chore(deps): update azure bicep to 2024-01-01
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 22, 2024
1 parent f0eda70 commit a778966
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions installation/azure/vmclarityDeployModule.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ var maaEndpoint = substring('emptystring', 0, 0)

var vmClarityServerCustomScriptName = 'VmClarityServerCustomScript'

resource networkInterface 'Microsoft.Network/networkInterfaces@2023-11-01' = {
resource networkInterface 'Microsoft.Network/networkInterfaces@2024-01-01' = {
name: networkInterfaceName
location: location
properties: {
Expand All @@ -220,7 +220,7 @@ resource networkInterface 'Microsoft.Network/networkInterfaces@2023-11-01' = {
}
}

resource vmClarityServerSecurityGroup 'Microsoft.Network/networkSecurityGroups@2023-11-01' = {
resource vmClarityServerSecurityGroup 'Microsoft.Network/networkSecurityGroups@2024-01-01' = {
name: vmClarityServerSecurityGroupName
location: location
properties: {
Expand All @@ -245,7 +245,7 @@ resource vmClarityServerSecurityGroup 'Microsoft.Network/networkSecurityGroups@2
// Declare subnets inside of virtualNet so that they don't get deleted when
// re-applying the template
// https://github.com/Azure/bicep/issues/4653
resource vmClarityNet 'Microsoft.Network/virtualNetworks@2023-11-01' = {
resource vmClarityNet 'Microsoft.Network/virtualNetworks@2024-01-01' = {
name: vmClarityNetName
location: location
properties: {
Expand Down Expand Up @@ -288,7 +288,7 @@ resource vmClarityNet 'Microsoft.Network/virtualNetworks@2023-11-01' = {
}
}

resource publicIPAddress 'Microsoft.Network/publicIPAddresses@2023-11-01' = {
resource publicIPAddress 'Microsoft.Network/publicIPAddresses@2024-01-01' = {
name: publicIPAddressName
location: location
sku: {
Expand Down Expand Up @@ -381,7 +381,7 @@ resource vmclarityServerCustomScript 'Microsoft.Compute/virtualMachines/extensio
}
}

resource vmClarityScannerSecurityGroup 'Microsoft.Network/networkSecurityGroups@2023-11-01' = {
resource vmClarityScannerSecurityGroup 'Microsoft.Network/networkSecurityGroups@2024-01-01' = {
name: vmClarityScannerSecurityGroupName
location: location
properties: {
Expand Down

0 comments on commit a778966

Please sign in to comment.