Skip to content

Commit

Permalink
update amlfs provider
Browse files Browse the repository at this point in the history
  • Loading branch information
xpillons committed Oct 10, 2023
1 parent 4e3ba06 commit 9365ef0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bicep/amlfs.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ The step sizes are dependent on the SKU.
''')
param capacity int

resource fileSystem 'Microsoft.StorageCache/amlFileSystems@2021-11-01-preview' = {
resource fileSystem 'Microsoft.StorageCache/amlFileSystems@2023-05-01' = {
name: name
location: location
sku: {
name: sku
}
zones: [ '1' ]
properties: {
storageCapacityTiB: capacity
zones: [ 1 ]
filesystemSubnet: subnetId
maintenanceWindow: {
dayOfWeek: 'Saturday'
timeOfDay: '21:00'
timeOfDayUTC: '23:00'
}
}
}

output lustre_mgs string = fileSystem.properties.mgsAddress
output lustre_mgs string = fileSystem.properties.clientInfo.mgsAddress

0 comments on commit 9365ef0

Please sign in to comment.