PSRule.Rules.Azure
PSRule.Rules.Azure copied to clipboard
[RULE] Disable public access for Data Explorer Clusters
Existing rule
No response
Suggested rule
Disable network access from public sources. Instead use private endpoints which provide private access from a VNET.
resource adx 'Microsoft.Kusto/clusters@2023-08-15' = {
name: name
location: location
sku: {
name: 'Standard_D11_v2'
tier: 'Standard'
}
identity: {
type: 'SystemAssigned'
}
properties: {
enableDiskEncryption: true
publicNetworkAccess: 'Disabled'
}
}
Pillar
Security
Additional context
Similar to: https://azure.github.io/PSRule.Rules.Azure/en/rules/Azure.Cosmos.PublicAccess/
- https://learn.microsoft.com/en-us/azure/data-explorer/security-network-restrict-public-access
- https://learn.microsoft.com/en-us/azure/well-architected/security/networking
- https://learn.microsoft.com/en-gb/azure/templates/microsoft.kusto/clusters?pivots=deployment-language-bicep