是否可以禁用存储帐户访问密钥?
Is it possible to disable storage account access keys?
是否可以使用 primary/secondary 密钥完全禁用对存储帐户的访问?我还没有找到办法做到这一点。可以这样做Azure SignalR Service
.
P.S。我不想禁用共享密钥访问
您可以从
禁用共享密钥访问
- Azure 门户(设置 -> 配置 -> 将“允许共享密钥访问”设置为禁用),
- Powershell 脚本
- Azure CLI
请参阅下面的命令,通过将 AllowSharedKeyAccess
设置为 false 来使用 Powershell 禁用它。
Set-AzStorageAccount -ResourceGroupName <resource-group> `
-AccountName <storage-account> `
-AllowSharedKeyAccess $false
阅读更多相关内容here
是否可以使用 primary/secondary 密钥完全禁用对存储帐户的访问?我还没有找到办法做到这一点。可以这样做Azure SignalR Service
.
P.S。我不想禁用共享密钥访问
您可以从
禁用共享密钥访问- Azure 门户(设置 -> 配置 -> 将“允许共享密钥访问”设置为禁用),
- Powershell 脚本
- Azure CLI
请参阅下面的命令,通过将 AllowSharedKeyAccess
设置为 false 来使用 Powershell 禁用它。
Set-AzStorageAccount -ResourceGroupName <resource-group> `
-AccountName <storage-account> `
-AllowSharedKeyAccess $false
阅读更多相关内容here