File tree Expand file tree Collapse file tree 2 files changed +51
-1
lines changed
infrastructure/resource_group_level/modules Expand file tree Collapse file tree 2 files changed +51
-1
lines changed Original file line number Diff line number Diff line change @@ -482,6 +482,46 @@ var collectionsArray = [
482
482
]
483
483
}
484
484
}
485
+ }
486
+ {
487
+ name : 'utilisationData'
488
+ properties : {
489
+ resource : {
490
+ id : 'utilisationData'
491
+ shardKey : {
492
+ _id : 'Hash'
493
+ }
494
+ indexes : [
495
+ {
496
+ key : {
497
+ keys : [
498
+ '_id'
499
+ ]
500
+ }
501
+ }
502
+ ]
503
+ }
504
+ }
505
+ }
506
+ {
507
+ name : 'utilisationReports'
508
+ properties : {
509
+ resource : {
510
+ id : 'utilisationReports'
511
+ shardKey : {
512
+ _id : 'Hash'
513
+ }
514
+ indexes : [
515
+ {
516
+ key : {
517
+ keys : [
518
+ '_id'
519
+ ]
520
+ }
521
+ }
522
+ ]
523
+ }
524
+ }
485
525
}
486
526
]
487
527
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ resource defaultBlobService 'Microsoft.Storage/storageAccounts/blobServices@2022
136
136
resource defaultFileService 'Microsoft.Storage/storageAccounts/fileServices@2022-09-01' = {
137
137
parent : storageAccount
138
138
name : 'default'
139
- // TODO:FN-693 Note that the extant envrionments don't have
139
+ // TODO:FN-693 Note that the extant environments don't have
140
140
// 7 day soft deletes enabled. We may want to enable this functionality.
141
141
properties : {
142
142
shareDeleteRetentionPolicy : {
@@ -189,6 +189,16 @@ resource portalFileShare 'Microsoft.Storage/storageAccounts/fileServices/shares@
189
189
}
190
190
}
191
191
192
+ resource utilisationReportsFileShare 'Microsoft.Storage/storageAccounts/fileServices/shares@2022-09-01' = {
193
+ parent : defaultFileService
194
+ name : 'utilisation-reports'
195
+ properties : {
196
+ accessTier : 'TransactionOptimized'
197
+ shareQuota : 5120
198
+ enabledProtocols : 'SMB'
199
+ }
200
+ }
201
+
192
202
resource queues 'Microsoft.Storage/storageAccounts/queueServices/queues@2022-09-01' = [for queueName in queueNames : {
193
203
parent : queueService
194
204
name : queueName
You can’t perform that action at this time.
0 commit comments