Skip to content

Commit 7631e00

Browse files
Review feedback
1 parent 9e52cef commit 7631e00

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

azure-managed-lustre/create-file-system-resource-manager.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Create an Azure Managed Lustre file system by using Azure Resource Manager templates
33
description: Learn how to use Azure Resource Manager templates with JSON or Bicep to create an Azure Managed Lustre file system.
44
ms.topic: overview
5-
ms.date: 07/25/2024
5+
ms.date: 08/16/2024
66
author: pauljewellmsft
77
ms.author: pauljewell
8-
ms.lastreviewed: 02/21/2023
9-
ms.reviewer: mayabishop
8+
ms.lastreviewed: 08/16/2024
9+
ms.reviewer: ronhogue
1010

1111
---
1212

@@ -25,7 +25,7 @@ To learn more about these options, see [Comparing JSON and Bicep for templates](
2525

2626
Before you write a template, you must make some decisions about your Azure Managed Lustre file system. To learn more about the configuration options, see the setup details in [Create an Azure Managed Lustre file system](create-file-system-portal.md).
2727

28-
When you use a template, specify a *SKU* name to define the basic type of Azure Managed Lustre file system to create. The SKU represents a product tier. It sets system qualities such as the type of disks, the supported amount of storage, and the maximum throughput capacity. If you use the Azure portal to create your Azure Managed Lustre file system, you specify the system type indirectly by selecting its capabilities.
28+
When you use a template, specify a SKU to define the basic type of Azure Managed Lustre file system to create. The SKU represents a product tier. It sets system qualities such as the type of disks, the supported amount of storage, and the maximum throughput capacity. If you use the Azure portal to create your Azure Managed Lustre file system, you specify the system type indirectly by selecting its capabilities.
2929

3030
The following table shows the values for throughput and storage size in each supported SKU. These SKUs create a file system that uses durable SSD storage.
3131

@@ -78,13 +78,13 @@ To create an Azure Managed Lustre file system by using an ARM template, you need
7878
| hsm | The Blob Storage container settings for the file system. | See [HSM settings](#hsm-settings) |
7979
| maintenanceWindow | Specifies day and time when system updates can occur. | See [Maintenance window](#maintenance-window) (required) |
8080
| rootSquashSettings | Specifies root squash settings for the file system. | See [Root squash settings](#root-squash-settings) |
81-
| storageCapacityTiB | The size of the file system, in TiB. | int (required) |
81+
| storageCapacityTiB | The size of the file system, in TiB. To learn more about the allowable values for this field based on the SKU, see [Choose file system type and size](#choose-file-system-type-and-size). | int (required) |
8282

8383
#### Encryption settings
8484

8585
| Name | Description | Value |
8686
| --- | --- | --- |
87-
| keyEncryptionKey | Specifies the location of the encryption key in Key Vault. | See [template docs](/azure/templates/microsoft.storagecache/amlfilesystems#amlfilesystemencryptionsettings-1) |
87+
| keyEncryptionKey | Specifies the location of the encryption key in Key Vault. | See [template docs](/azure/templates/microsoft.storagecache/amlfilesystems#amlfilesystemencryptionsettings) |
8888

8989
#### HSM settings
9090

@@ -105,7 +105,9 @@ To create an Azure Managed Lustre file system by using an ARM template, you need
105105
| Name | Description | Value |
106106
| --- | --- | --- |
107107
| dayOfWeek | Day of the week on which the maintenance window can occur. | `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday` |
108-
| timeOfDayUTC | The time of day (in UTC) the maintenance window can occur. | string</br>Pattern = `^([0-9]&#124;0[0-9]&#124;1[0-9]&#124;2[0-3]):[0-5][0-9]$` |
108+
| timeOfDayUTC | The time of day (in UTC) the maintenance window can occur. | string</br>Example: `22:30` |
109+
110+
The `timeOfDayUTC` property uses a 24-hour clock format. For example, `22:30` represents 10:30 PM. The pattern is `^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$`.
109111

110112
#### Root squash settings
111113

0 commit comments

Comments
 (0)