.NET Aspire 9.2 is Now Available with New Ways to Deploy - .NET Blog

.NET Aspire 9.2 is now available with cool new dashboard features and introducing the publishers feature

.NET Blog
Quota usage reporting with Azure Resource Graph

Janne Mattila’s blog | From programmer to programmer – Programming just for the fun of it

Janne Mattila

So, here is a #PowerShell #ResourceGraph query to list all storage accounts and their #allowSharedKeyAccess settings:

Search-AzGraph -Query "resources | where type =~ 'Microsoft.Storage/storageAccounts' | extend allowSharedKeyAccess = parse_json(properties).allowSharedKeyAccess | project subscriptionId, resourceGroup, name, allowSharedKeyAccess"

#Azure #StorageAccount #SharedKeyAccess

Ref: https://learn.microsoft.com/en-gb/azure/storage/common/shared-key-authorization-prevent

Prevent authorization with Shared Key - Azure Storage

To require clients to use Azure AD to authorize requests, you can disallow requests to the storage account that are authorized with Shared Key.