Skip to content

Commit

Permalink
Update storage-account.bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
rrichley authored Dec 29, 2024
1 parent 5628b97 commit 4d4757c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bicep/storage-account.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2022-09-01' = {
kind: 'StorageV2'
properties: {
accessTier: 'Hot'
allowBlobPublicAccess: true // Enable public access for blobs
allowBlobPublicAccess: true // Enable blob public access
networkAcls: {
bypass: 'AzureServices'
defaultAction: 'Deny'
Expand All @@ -45,7 +45,7 @@ resource container 'Microsoft.Storage/storageAccounts/blobServices/containers@20
parent: blobService
name: containerName
properties: {
publicAccess: 'Blob'
publicAccess: 'Blob' // Allow public access at container level
}
}

Expand Down

0 comments on commit 4d4757c

Please sign in to comment.