From df89bdadf30ee22a5bc92e34937706fa8b74b704 Mon Sep 17 00:00:00 2001 From: Jan Egil Ring Date: Tue, 6 Aug 2024 09:18:53 +0000 Subject: [PATCH] Disable local user access for staging storage account Signed-off-by: Jan Egil Ring --- azure_jumpstart_arcbox/bicep/mgmt/mgmtStagingStorage.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure_jumpstart_arcbox/bicep/mgmt/mgmtStagingStorage.bicep b/azure_jumpstart_arcbox/bicep/mgmt/mgmtStagingStorage.bicep index 74af350fe0..ce08d7af91 100644 --- a/azure_jumpstart_arcbox/bicep/mgmt/mgmtStagingStorage.bicep +++ b/azure_jumpstart_arcbox/bicep/mgmt/mgmtStagingStorage.bicep @@ -25,7 +25,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2022-05-01' = { kind: 'StorageV2' properties: { supportsHttpsTrafficOnly: true - isLocalUserEnabled: true + isLocalUserEnabled: false allowSharedKeyAccess: false } }