You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To register with Azure CLI, call the [az feature register](/cli/azure/feature#az-feature-register) command.
48
50
49
51
```azurecli
50
-
az feature register --namespace Microsoft.Storage --name AllowAccountEncryptionKeyForQueues
51
-
az feature register --namespace Microsoft.Storage --name AllowAccountEncryptionKeyForTables
52
+
az feature register --namespace Microsoft.Storage \
53
+
--name AllowAccountEncryptionKeyForQueues
54
+
az feature register --namespace Microsoft.Storage \
55
+
--name AllowAccountEncryptionKeyForTables
52
56
```
53
57
54
58
# [Template](#tab/template)
@@ -66,17 +70,21 @@ To check the status of your registration for Queue or Table storage, use PowerSh
66
70
To check the status of your registration with PowerShell, call the [Get-AzProviderFeature](/powershell/module/az.resources/get-azproviderfeature) command.
@@ -217,7 +225,8 @@ To verify that a service in a storage account is using the account encryption ke
217
225
To verify that a service in a storage account is using the account encryption key, call the [Get-AzStorageAccount](/powershell/module/az.storage/get-azstorageaccount) command. This command returns a set of storage account properties and their values. Look for the `KeyType` field for each service within the `Encryption` property and verify that it is set to `Account`.
0 commit comments