Skip to content

Commit

Permalink
fixed ARG
Browse files Browse the repository at this point in the history
  • Loading branch information
sdolgin authored Aug 9, 2024
1 parent a7204f0 commit 1caa20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checklists/azure_storage_checklist.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
"guid": "15f51296-5398-4e6d-bd22-7dd142b06c21",
"id": "A11.04",
"severity": "High",
"graph":"resources | where type == 'microsoft.storage/storageaccounts' | extend allowSharedKeyAccess = tostring(properties.allowSharedKeyAccess) | extend compliant = (isempty(allowSharedKeyAccess) or allowSharedKeyAccess == true)| distinct id, compliant",
"graph":"resources | where type == 'microsoft.storage/storageaccounts' | extend allowSharedKeyAccess = tostring(properties.allowSharedKeyAccess) | extend compliant = (isnotempty(allowSharedKeyAccess) and allowSharedKeyAccess == 'false') | distinct id, compliant",
"link": "https://learn.microsoft.com/rest/api/storageservices/authorize-with-shared-key"
},
{
Expand Down

0 comments on commit 1caa20b

Please sign in to comment.