File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ param storageAccountName string = ''
25
25
param storageResourceGroupName string = ''
26
26
param storageResourceGroupLocation string = location
27
27
param storageContainerName string = 'content'
28
+ param storageSkuName string // Set in main.parameters.json
28
29
29
30
param openAiServiceName string = ''
30
31
param openAiResourceGroupName string = ''
@@ -219,7 +220,7 @@ module storage 'core/storage/storage-account.bicep' = {
219
220
tags : tags
220
221
publicNetworkAccess : 'Enabled'
221
222
sku : {
222
- name : 'Standard_LRS'
223
+ name : storageSkuName
223
224
}
224
225
deleteRetentionPolicy : {
225
226
enabled : true
Original file line number Diff line number Diff line change 53
53
"storageResourceGroupName" : {
54
54
"value" : " ${AZURE_STORAGE_RESOURCE_GROUP}"
55
55
},
56
+ "storageSkuName" : {
57
+ "value" : " ${AZURE_STORAGE_SKU=Standard_LRS}"
58
+ },
56
59
"chatGptDeploymentName" : {
57
60
"value" : " ${AZURE_OPENAI_CHATGPT_DEPLOYMENT=chat}"
58
61
},
You can’t perform that action at this time.
0 commit comments