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

Updated eh_checklist.en.json - A01.01, A01.02, B01.2, B01.3 #915

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion checklists/eh_checklist.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"guid": "7aaf12e7-b94e-4f6e-847d-2d92981b1cd6",
"id": "A01.01",
"severity": "Low",
"query": "resources | where type =~ 'Microsoft.EventHub/namespaces' | extend SkuName = tostring(sku.name) | extend EncryptionEnabled = iif(isnotempty(properties.encryption.keySource), 'Enabled', 'Disabled') | extend compliant = iif(EncryptionEnabled == 'Enabled', true, false) | project name, resourceGroup, location, SkuName, EncryptionEnabled, compliant | where SkuName == 'Premium'",
"training": "https://learn.microsoft.com/learn/modules/plan-implement-administer-conditional-access/",
"link": "https://learn.microsoft.com/azure/event-hubs/configure-customer-managed-key"
},
Expand All @@ -23,6 +24,7 @@
"guid": "d2f54b29-769e-43a6-a0e7-828ac936657e",
"id": "A01.02",
"severity": "Medium",
"query": "resources | where type =~ 'Microsoft.EventHub/namespaces' | extend MinimumTlsVersion = tostring(properties.minimumTlsVersion) | extend compliant = iif(MinimumTlsVersion == '1.2' or MinimumTlsVersion == '1.3', true, false) | project name, resourceGroup, location, MinimumTlsVersion, compliant",
"training": "https://learn.microsoft.com/learn/modules/secure-aad-users-with-mfa/",
"link": "https://learn.microsoft.com/azure/event-hubs/transport-layer-security-configure-minimum-version"
},
Expand Down Expand Up @@ -125,6 +127,7 @@
"guid": "f15bce21-9e4a-40eb-9787-9424d226786d",
"id": "B01.2",
"severity": "High",
"query": "resources | where type =~ 'Microsoft.EventHub/namespaces' | extend zoneRedundant = tobool(properties.zoneRedundant) | extend compliant = iff(zoneRedundant == true, true, false) | project name, resourceGroup, zoneRedundant, compliant",
"link": "https://learn.microsoft.com/azure/event-hubs/event-hubs-premium-overview#high-availability-with-availability-zones"
},
{
Expand All @@ -136,6 +139,7 @@
"guid": "20b56c56-ad58-4519-8f82-735c586bb281",
"id": "B01.3",
"severity": "Medium",
"query": "resources | where type =~ 'Microsoft.EventHub/namespaces' | extend sku = tostring(sku.name) | extend compliant = iff(sku == "Premium", true, false) | project name, resourceGroup, location, sku, compliant",
sonalika-roy marked this conversation as resolved.
Show resolved Hide resolved
"link": "https://learn.microsoft.com/azure/event-hubs/compare-tiers"
},
{
Expand Down Expand Up @@ -264,4 +268,4 @@
"waf": "all",
"timestamp": "April 09, 2024"
}
}
}
Loading