From e187beb3b597dade38bb2cefe2d54dc12d30df59 Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Tue, 5 Mar 2024 14:40:06 +0000 Subject: [PATCH 1/2] Correct default location in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0fe2caa..ebafbfb 100644 --- a/README.md +++ b/README.md @@ -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`. -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 +./create_resources.sh -l uksouth ``` # Design From f881ded79943c31202db786933550c8f66abf0e9 Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Thu, 14 Mar 2024 11:21:37 +0000 Subject: [PATCH 2/2] Disable public access to blobs by default --- rg.bicep | 1 + 1 file changed, 1 insertion(+) diff --git a/rg.bicep b/rg.bicep index 1624389..ecb9cbf 100644 --- a/rg.bicep +++ b/rg.bicep @@ -39,6 +39,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = { } properties: { publicNetworkAccess: 'Enabled' + allowBlobPublicAccess: false } }