Skip to content

Commit

Permalink
update with Saul's recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
Denver Reed committed Sep 17, 2024
1 parent 194a0dc commit a2a79d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions checklists/azure_arc_checklist.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
"description": "Use automatic upgrades where available and define an update strategy for all extensions not supporting automatic upgrades.",
"guid": "4c2bd463-cbbb-4c86-a195-abb91a4ed90d",
"severity": "High",
"graph": "resources | where type == 'microsoft.hybridcompute/machines/extensions'| extend compliant = (properties.enableAutomaticUpgrade == 'true') | distinct id, compliant",
"graph": "resources | where type =~ 'microsoft.hybridcompute/machines/extensions'| extend compliant = (properties.enableAutomaticUpgrade == 'true') | distinct id, compliant",
"link": "https://learn.microsoft.com/azure/azure-arc/servers/manage-automatic-vm-extension-upgrade?tabs=azure-portal"
},
{
Expand Down Expand Up @@ -213,7 +213,6 @@
"text": "Design a monitoring strategy to send metrics and logs to an Log Analytics workspace",
"guid": "74d1102c-ac6a-4ae0-8e6a-84de5df47d2d",
"severity": "Medium",
"graph": "resources | where type == 'microsoft.hybridcompute/machines' | project arcMachineId = id, arcMachineName = name | join kind=leftouter (resources | where type == 'microsoft.hybridcompute/machines/extensions' | where name contains 'azuremonitor' | extend baseIdParts = split(id, '/extensions/') | extend extensionMachineId = tostring(baseIdParts[0]) | project extensionMachineId, extensionId = id) on $left.arcMachineId == $right.extensionMachineId | extend compliant = iif(extensionMachineId == '', 'No', 'Yes') | project arcMachineId, compliant",
"link": "https://learn.microsoft.com/azure/azure-monitor/agents/log-analytics-agent#data-collected"
},
{
Expand Down

0 comments on commit a2a79d7

Please sign in to comment.