Skip to content

Commit

Permalink
Added extra hardening security
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisribe committed Nov 25, 2024
1 parent 4b787f1 commit 3226b45
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,28 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2022-05-01' = {
kind: 'StorageV2'
properties: {
minimumTlsVersion: 'TLS1_2'

accessTier: 'Hot'
supportsHttpsTrafficOnly: true
allowBlobPublicAccess: false
allowCrossTenantReplication: false
allowSharedKeyAccess: false

encryption: {
services: {
blob: {
enabled: true
keyType: 'Account'
}
file: {
enabled: true
keyType: 'Account'
}
}
requireInfrastructureEncryption: true
keySource: 'Microsoft.Storage'
}

networkAcls: {
bypass: 'AzureServices'
defaultAction: 'Deny'
Expand Down

0 comments on commit 3226b45

Please sign in to comment.