Skip to content

Commit

Permalink
Ensure Azure Storage Account default network access is set to Deny
Browse files Browse the repository at this point in the history
Ensure Azure Storage Account default network access is set to Deny
  • Loading branch information
Acenl12 authored May 4, 2023
1 parent cc58ddd commit c371a55
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/azFunction/AzFunctionInfrastructure/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ resource resStorageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
kind: 'StorageV2'
properties: {
supportsHttpsTrafficOnly: true
"networkAcls": {
"defaultAction": "Deny",
"bypass": "AzureServices"
}
encryption: {
services: {
file: {
Expand Down

0 comments on commit c371a55

Please sign in to comment.