Skip to content

Commit

Permalink
fix: add group id
Browse files Browse the repository at this point in the history
  • Loading branch information
asleboon committed Jan 23, 2025
1 parent 64e185a commit d1d9a71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion infra/modules/sqlServer.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ resource vnet 'Microsoft.Network/virtualNetworks@2023-04-01' = {
{
name: subnetName
properties: {
addressPrefix: '10.0.0.0/27'
addressPrefix: '10.0.0.32/27'
}
}
]
Expand All @@ -87,6 +87,7 @@ resource sqlPrivateEndpoint 'Microsoft.Network/privateEndpoints@2024-05-01' = {
description: 'Private endpoint for SQL server'
}
privateLinkServiceId: sqlServer.id
groupIds: ['sqlServer']
}
}
]
Expand Down

0 comments on commit d1d9a71

Please sign in to comment.