Skip to content

Commit

Permalink
Disable shared key access.
Browse files Browse the repository at this point in the history
  • Loading branch information
saimachi committed May 15, 2024
1 parent a1ac692 commit 8dff42c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/quick-start/infra/shared/storage.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource storage 'Microsoft.Storage/storageAccounts@2023-01-01' = {
isHnsEnabled: true
minimumTlsVersion: 'TLS1_2'
supportsHttpsTrafficOnly: true
allowSharedKeyAccess: false
allowSharedKeyAccess: true
}
}

Expand Down
2 changes: 1 addition & 1 deletion deploy/standard/bicep/modules/storageAccount.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ resource main 'Microsoft.Storage/storageAccounts@2023-01-01' = {
accessTier: 'Hot'
allowBlobPublicAccess: false
allowCrossTenantReplication: true
allowSharedKeyAccess: false
allowSharedKeyAccess: true
defaultToOAuthAuthentication: true
isHnsEnabled: enableHns
isNfsV3Enabled: false
Expand Down

0 comments on commit 8dff42c

Please sign in to comment.