Skip to content

Commit

Permalink
Update aks-cluster-base.bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
mukrishn authored and mjlshen committed Jun 11, 2024
1 parent f5c0985 commit ae50ab0
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions dev-infrastructure/modules/aks-cluster-base.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,6 @@ resource subscriptionTags 'Microsoft.Resources/tags@2024-03-01' = {
}
}

resource aks_nsg 'Microsoft.Network/networkSecurityGroups@2023-11-01' = {
name: 'aks-nsg'
location: location
}

resource aks_pod_nsg 'Microsoft.Network/networkSecurityGroups@2023-11-01' = {
name: 'aks-pod-nsg'
location: location
}

resource aks_keyvault 'Microsoft.KeyVault/vaults@2023-07-01' = {
location: location
name: aksKeyVaultName
Expand Down Expand Up @@ -154,9 +144,6 @@ resource aksNodeSubnet 'Microsoft.Network/virtualNetworks/subnets@2023-11-01' =
name: 'ClusterSubnet-001'
properties: {
addressPrefix: subnetPrefix
networkSecurityGroup: {
id: aks_nsg.id
}
privateEndpointNetworkPolicies: 'Disabled'
serviceEndpoints: [
{
Expand All @@ -180,9 +167,6 @@ resource aksPodSubnet 'Microsoft.Network/virtualNetworks/subnets@2023-11-01' = {
name: 'PodSubnet-001'
properties: {
addressPrefix: podSubnetPrefix
networkSecurityGroup: {
id: aks_pod_nsg.id
}
privateEndpointNetworkPolicies: 'Disabled'
serviceEndpoints: [
{
Expand Down

0 comments on commit ae50ab0

Please sign in to comment.