Skip to content

Commit

Permalink
Merge pull request #4 from microsoft/md/explicitnopublicblobaccess
Browse files Browse the repository at this point in the history
Disable public access to blobs by default
  • Loading branch information
maxdymond authored Mar 14, 2024
2 parents 964e95f + f881ded commit 4432f24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ If you wish to control the suffix used, you can pass the `-s` parameter:
```
which will attempt to create a storage container named `debianrepo<suffix>`.

By default all resources are created in the `uksouth` location - this can be
By default all resources are created in the `eastus` location - this can be
overridden by passing the `-l` parameter:

```bash
./create_resources.sh -l eastus <resource_group_name>
./create_resources.sh -l uksouth <resource_group_name>
```

# Design
Expand Down
1 change: 1 addition & 0 deletions rg.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = {
}
properties: {
publicNetworkAccess: 'Enabled'
allowBlobPublicAccess: false
}
}

Expand Down

0 comments on commit 4432f24

Please sign in to comment.