Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RULE] Disable public access for Data Explorer Clusters #3114

Open
BernieWhite opened this issue Oct 13, 2024 · 0 comments
Open

[RULE] Disable public access for Data Explorer Clusters #3114

BernieWhite opened this issue Oct 13, 2024 · 0 comments
Labels
good first issue Good for newcomers help wanted Extra attention is needed pillar: security Aligned to the Security pillar. rule: data-explorer Rules for Azure Data Explorer

Comments

@BernieWhite
Copy link
Collaborator

BernieWhite commented Oct 13, 2024

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/

@BernieWhite BernieWhite added pillar: security Aligned to the Security pillar. rule: data-explorer Rules for Azure Data Explorer help wanted Extra attention is needed good first issue Good for newcomers labels Oct 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers help wanted Extra attention is needed pillar: security Aligned to the Security pillar. rule: data-explorer Rules for Azure Data Explorer
Projects
None yet
Development

No branches or pull requests

1 participant