Skip to content

Commit 2900438

Browse files
authored
Added extra security hardening (Azure#47344)
1 parent be6c47b commit 2900438

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

sdk/healthdataaiservices/test-resources.bicep

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,28 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2022-05-01' = {
3737
kind: 'StorageV2'
3838
properties: {
3939
minimumTlsVersion: 'TLS1_2'
40+
41+
accessTier: 'Hot'
42+
supportsHttpsTrafficOnly: true
43+
allowBlobPublicAccess: false
44+
allowCrossTenantReplication: false
45+
allowSharedKeyAccess: false
46+
47+
encryption: {
48+
services: {
49+
blob: {
50+
enabled: true
51+
keyType: 'Account'
52+
}
53+
file: {
54+
enabled: true
55+
keyType: 'Account'
56+
}
57+
}
58+
requireInfrastructureEncryption: true
59+
keySource: 'Microsoft.Storage'
60+
}
61+
4062
networkAcls: {
4163
bypass: 'AzureServices'
4264
defaultAction: 'Deny'

0 commit comments

Comments
 (0)