Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 61b3f87

Browse files
prevent users from enabling public access to containers (#300)
1 parent c56f72b commit 61b3f87

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/deployment/azuredeploy.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,8 @@
526526
},
527527
"properties": {
528528
"supportsHttpsTrafficOnly": true,
529-
"accessTier": "Hot"
529+
"accessTier": "Hot",
530+
"allowBlobPublicAccess": false
530531
},
531532
"tags": {
532533
"OWNER": "[parameters('owner')]"
@@ -544,7 +545,8 @@
544545
},
545546
"properties": {
546547
"supportsHttpsTrafficOnly": true,
547-
"accessTier": "Hot"
548+
"accessTier": "Hot",
549+
"allowBlobPublicAccess": false
548550
},
549551
"tags": {
550552
"OWNER": "[parameters('owner')]"

0 commit comments

Comments
 (0)