Skip to content

Commit 49b4f07

Browse files
authored
Fix create resource errors (#53)
1 parent 4b11a0b commit 49b4f07

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/resources/ResourceInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ export async function getResourceInfo(): Promise<ResourceInfo> {
4343
objectId,
4444
resourcePrefix,
4545
resourceGroupName: resourcePrefix + 'group',
46-
location: 'eastus',
46+
location: 'westus',
4747
};
4848
}

src/resources/storage.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export async function createStorageAccount(info: ResourceInfo): Promise<void> {
1818
sku: {
1919
name: KnownSkuName.StandardLRS,
2020
},
21+
allowBlobPublicAccess: false,
2122
});
2223

2324
const connectionString = await getStorageConnectionString(info);

0 commit comments

Comments
 (0)