Skip to content

Commit

Permalink
Merge pull request Azure#554 from laragoldstein13/patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
TomJanetscheck authored Apr 5, 2022
2 parents 744940c + 240809b commit 1edff08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ASC exempt and disabled recommendations
# Microsoft Defender for Cloud exempt and disabled recommendations
Azure Resource Graph (ARG) provides an efficient way to query at scale across a given set of subscriptions for any Azure Resource (for more information please visit https://docs.microsoft.com/en-us/azure/governance/resource-graph/). This query returns a list of the Azure Resources that have recommendations that are Exempt due to Waiver or Mitigation and also Policy being disabled. Can be used as a quick report for auditors or tracking down exemptions and disabled policies for review.


Expand All @@ -19,4 +19,4 @@ securityresources
| extend ResourceName = tostring(split(resourceId,'/')[8]), RecommendationName = tostring(properties.displayName), Source = properties.resourceDetails.Source, StatusCause = tostring(properties.status.cause), StatusDescription = properties.status.description, RecommendationSeverity = tostring(properties.metadata.severity)
| project RecommendationName, RecommendationSeverity, ResourceName, StatusCause, StatusDescription, resourceGroup, Source, subscriptionId
| sort by RecommendationSeverity, RecommendationName
```
```

0 comments on commit 1edff08

Please sign in to comment.