Hi,
I had the pleasure to be speaker for the Back from Microsoft Build 2021 organized by the DotNetQuebec and the Azure Quebec communities.
Please find below my presentation:
Maxime.
Hi,
I had the pleasure to be speaker for the Back from Microsoft Build 2021 organized by the DotNetQuebec and the Azure Quebec communities.
Please find below my presentation:
Maxime.
Hi!
In this article, I will show you how you can use Azure Graph to check the result of one specific policy across all the subscriptions of your Azure tenant. Before to start let me refine what’s is it?
Azure Resource Graph (ARG) provides an efficient way to query at scale across a given set of subscriptions for any Azure Resource. If you are not familiar, I will recommend you to spend some time to learn it!
In this example, I will create a query to list all the policy and I will extract the policy name, compliance status and the resource id.
policyresources | where type == "microsoft.policyinsights/policystates" | extend name = properties['policyDefinitionName'] | extend state = properties['complianceState'] | extend resourceid = properties['resourceId'] | project name, state, resourceid
In this second example, I will create a query to list the compliance status and the resource id of an existing policy
policyresources | where type == "microsoft.policyinsights/policystates" | where properties['policyDefinitionName'] == "Name Of your Azure Policy" | extend state = properties['complianceState'] | extend resourceid = properties['resourceId'] | project state, resourceid
Maxime.
Hi,
In this article, I will show you how can disable the SAS Key feature for a Storage Account. When you disallow Shared Key authorization for a storage account, requests from clients that are using the account access keys for Shared Key authorization will fail.
When you are confident that you can safely reject requests that are authorized with Shared Key, you can set the AllowSharedKeyAccess property for the storage account to false.
The AllowSharedKeyAccess property is not set by default and does not return a value until you explicitly set it. The storage account permits requests that are authorized with Shared Key when the property value is null or when it is true.
Azure CLI:
az storage account update \ --name \ --resource-group \ --allow-shared-key-access false
Azure Portal:
To check the Shared Key access setting across a set of storage accounts with optimal performance, you can use the Azure Resource Graph Explorer in the Azure portal.
resources | where type =~ 'Microsoft.Storage/storageAccounts' | extend allowSharedKeyAccess = parse_json(properties).allowSharedKeyAccess | project subscriptionId, resourceGroup, name, allowSharedKeyAccess
Maxime.