You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-managed-lustre/create-file-system-resource-manager.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
title: Create an Azure Managed Lustre file system by using Azure Resource Manager templates
3
3
description: Learn how to use Azure Resource Manager templates with JSON or Bicep to create an Azure Managed Lustre file system.
4
4
ms.topic: overview
5
-
ms.date: 07/25/2024
5
+
ms.date: 08/16/2024
6
6
author: pauljewellmsft
7
7
ms.author: pauljewell
8
-
ms.lastreviewed: 02/21/2023
9
-
ms.reviewer: mayabishop
8
+
ms.lastreviewed: 08/16/2024
9
+
ms.reviewer: ronhogue
10
10
11
11
---
12
12
@@ -25,7 +25,7 @@ To learn more about these options, see [Comparing JSON and Bicep for templates](
25
25
26
26
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).
27
27
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.
29
29
30
30
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.
31
31
@@ -78,13 +78,13 @@ To create an Azure Managed Lustre file system by using an ARM template, you need
78
78
| hsm | The Blob Storage container settings for the file system. | See [HSM settings](#hsm-settings)|
79
79
| maintenanceWindow | Specifies day and time when system updates can occur. | See [Maintenance window](#maintenance-window) (required) |
80
80
| 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) |
82
82
83
83
#### Encryption settings
84
84
85
85
| Name | Description | Value |
86
86
| --- | --- | --- |
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)|
88
88
89
89
#### HSM settings
90
90
@@ -105,7 +105,9 @@ To create an Azure Managed Lustre file system by using an ARM template, you need
105
105
| Name | Description | Value |
106
106
| --- | --- | --- |
107
107
| 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]|0[0-9]|1[0-9]|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]$`.
0 commit comments