1. Packages
  2. Azure Classic
  3. API Docs
  4. managedlustre
  5. FileSystem

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

azure.managedlustre.FileSystem

Explore with Pulumi AI

Manages an Azure Managed Lustre File System.

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.managedlustre.FileSystem;
import com.pulumi.azure.managedlustre.FileSystemArgs;
import com.pulumi.azure.managedlustre.inputs.FileSystemMaintenanceWindowArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
            .name("example-vnet")
            .addressSpaces("10.0.0.0/16")
            .location(example.location())
            .resourceGroupName(example.name())
            .build());

        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
            .name("example-subnet")
            .resourceGroupName(example.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("10.0.2.0/24")
            .build());

        var exampleFileSystem = new FileSystem("exampleFileSystem", FileSystemArgs.builder()
            .name("example-amlfs")
            .resourceGroupName(example.name())
            .location(example.location())
            .skuName("AMLFS-Durable-Premium-250")
            .subnetId(exampleSubnet.id())
            .storageCapacityInTb(8)
            .zones("2")
            .maintenanceWindow(FileSystemMaintenanceWindowArgs.builder()
                .dayOfWeek("Friday")
                .timeOfDayUtc("22:00")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    name: example
    properties:
      name: example-vnet
      addressSpaces:
        - 10.0.0.0/16
      location: ${example.location}
      resourceGroupName: ${example.name}
  exampleSubnet:
    type: azure:network:Subnet
    name: example
    properties:
      name: example-subnet
      resourceGroupName: ${example.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 10.0.2.0/24
  exampleFileSystem:
    type: azure:managedlustre:FileSystem
    name: example
    properties:
      name: example-amlfs
      resourceGroupName: ${example.name}
      location: ${example.location}
      skuName: AMLFS-Durable-Premium-250
      subnetId: ${exampleSubnet.id}
      storageCapacityInTb: 8
      zones:
        - '2'
      maintenanceWindow:
        dayOfWeek: Friday
        timeOfDayUtc: 22:00
Copy

Create FileSystem Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new FileSystem(name: string, args: FileSystemArgs, opts?: CustomResourceOptions);
@overload
def FileSystem(resource_name: str,
               args: FileSystemArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def FileSystem(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               maintenance_window: Optional[FileSystemMaintenanceWindowArgs] = None,
               resource_group_name: Optional[str] = None,
               sku_name: Optional[str] = None,
               storage_capacity_in_tb: Optional[int] = None,
               subnet_id: Optional[str] = None,
               zones: Optional[Sequence[str]] = None,
               encryption_key: Optional[FileSystemEncryptionKeyArgs] = None,
               hsm_setting: Optional[FileSystemHsmSettingArgs] = None,
               identity: Optional[FileSystemIdentityArgs] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewFileSystem(ctx *Context, name string, args FileSystemArgs, opts ...ResourceOption) (*FileSystem, error)
public FileSystem(string name, FileSystemArgs args, CustomResourceOptions? opts = null)
public FileSystem(String name, FileSystemArgs args)
public FileSystem(String name, FileSystemArgs args, CustomResourceOptions options)
type: azure:managedlustre:FileSystem
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. FileSystemArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. FileSystemArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. FileSystemArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FileSystemArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. FileSystemArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var fileSystemResource = new Azure.ManagedLustre.FileSystem("fileSystemResource", new()
{
    MaintenanceWindow = new Azure.ManagedLustre.Inputs.FileSystemMaintenanceWindowArgs
    {
        DayOfWeek = "string",
        TimeOfDayInUtc = "string",
    },
    ResourceGroupName = "string",
    SkuName = "string",
    StorageCapacityInTb = 0,
    SubnetId = "string",
    Zones = new[]
    {
        "string",
    },
    EncryptionKey = new Azure.ManagedLustre.Inputs.FileSystemEncryptionKeyArgs
    {
        KeyUrl = "string",
        SourceVaultId = "string",
    },
    HsmSetting = new Azure.ManagedLustre.Inputs.FileSystemHsmSettingArgs
    {
        ContainerId = "string",
        LoggingContainerId = "string",
        ImportPrefix = "string",
    },
    Identity = new Azure.ManagedLustre.Inputs.FileSystemIdentityArgs
    {
        IdentityIds = new[]
        {
            "string",
        },
        Type = "string",
    },
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := managedlustre.NewFileSystem(ctx, "fileSystemResource", &managedlustre.FileSystemArgs{
	MaintenanceWindow: &managedlustre.FileSystemMaintenanceWindowArgs{
		DayOfWeek:      pulumi.String("string"),
		TimeOfDayInUtc: pulumi.String("string"),
	},
	ResourceGroupName:   pulumi.String("string"),
	SkuName:             pulumi.String("string"),
	StorageCapacityInTb: pulumi.Int(0),
	SubnetId:            pulumi.String("string"),
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
	EncryptionKey: &managedlustre.FileSystemEncryptionKeyArgs{
		KeyUrl:        pulumi.String("string"),
		SourceVaultId: pulumi.String("string"),
	},
	HsmSetting: &managedlustre.FileSystemHsmSettingArgs{
		ContainerId:        pulumi.String("string"),
		LoggingContainerId: pulumi.String("string"),
		ImportPrefix:       pulumi.String("string"),
	},
	Identity: &managedlustre.FileSystemIdentityArgs{
		IdentityIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		Type: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var fileSystemResource = new FileSystem("fileSystemResource", FileSystemArgs.builder()
    .maintenanceWindow(FileSystemMaintenanceWindowArgs.builder()
        .dayOfWeek("string")
        .timeOfDayInUtc("string")
        .build())
    .resourceGroupName("string")
    .skuName("string")
    .storageCapacityInTb(0)
    .subnetId("string")
    .zones("string")
    .encryptionKey(FileSystemEncryptionKeyArgs.builder()
        .keyUrl("string")
        .sourceVaultId("string")
        .build())
    .hsmSetting(FileSystemHsmSettingArgs.builder()
        .containerId("string")
        .loggingContainerId("string")
        .importPrefix("string")
        .build())
    .identity(FileSystemIdentityArgs.builder()
        .identityIds("string")
        .type("string")
        .build())
    .location("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
file_system_resource = azure.managedlustre.FileSystem("fileSystemResource",
    maintenance_window={
        "day_of_week": "string",
        "time_of_day_in_utc": "string",
    },
    resource_group_name="string",
    sku_name="string",
    storage_capacity_in_tb=0,
    subnet_id="string",
    zones=["string"],
    encryption_key={
        "key_url": "string",
        "source_vault_id": "string",
    },
    hsm_setting={
        "container_id": "string",
        "logging_container_id": "string",
        "import_prefix": "string",
    },
    identity={
        "identity_ids": ["string"],
        "type": "string",
    },
    location="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const fileSystemResource = new azure.managedlustre.FileSystem("fileSystemResource", {
    maintenanceWindow: {
        dayOfWeek: "string",
        timeOfDayInUtc: "string",
    },
    resourceGroupName: "string",
    skuName: "string",
    storageCapacityInTb: 0,
    subnetId: "string",
    zones: ["string"],
    encryptionKey: {
        keyUrl: "string",
        sourceVaultId: "string",
    },
    hsmSetting: {
        containerId: "string",
        loggingContainerId: "string",
        importPrefix: "string",
    },
    identity: {
        identityIds: ["string"],
        type: "string",
    },
    location: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:managedlustre:FileSystem
properties:
    encryptionKey:
        keyUrl: string
        sourceVaultId: string
    hsmSetting:
        containerId: string
        importPrefix: string
        loggingContainerId: string
    identity:
        identityIds:
            - string
        type: string
    location: string
    maintenanceWindow:
        dayOfWeek: string
        timeOfDayInUtc: string
    name: string
    resourceGroupName: string
    skuName: string
    storageCapacityInTb: 0
    subnetId: string
    tags:
        string: string
    zones:
        - string
Copy

FileSystem Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The FileSystem resource accepts the following input properties:

MaintenanceWindow This property is required. FileSystemMaintenanceWindow
A maintenance_window block as defined below.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
SkuName
This property is required.
Changes to this property will trigger replacement.
string
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
StorageCapacityInTb
This property is required.
Changes to this property will trigger replacement.
int
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
SubnetId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
Zones
This property is required.
Changes to this property will trigger replacement.
List<string>
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
EncryptionKey FileSystemEncryptionKey

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

HsmSetting Changes to this property will trigger replacement. FileSystemHsmSetting
A hsm_setting block as defined below. Changing this forces a new resource to be created.
Identity Changes to this property will trigger replacement. FileSystemIdentity
An identity block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
MaintenanceWindow This property is required. FileSystemMaintenanceWindowArgs
A maintenance_window block as defined below.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
SkuName
This property is required.
Changes to this property will trigger replacement.
string
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
StorageCapacityInTb
This property is required.
Changes to this property will trigger replacement.
int
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
SubnetId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
Zones
This property is required.
Changes to this property will trigger replacement.
[]string
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
EncryptionKey FileSystemEncryptionKeyArgs

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

HsmSetting Changes to this property will trigger replacement. FileSystemHsmSettingArgs
A hsm_setting block as defined below. Changing this forces a new resource to be created.
Identity Changes to this property will trigger replacement. FileSystemIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
maintenanceWindow This property is required. FileSystemMaintenanceWindow
A maintenance_window block as defined below.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
skuName
This property is required.
Changes to this property will trigger replacement.
String
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storageCapacityInTb
This property is required.
Changes to this property will trigger replacement.
Integer
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnetId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
zones
This property is required.
Changes to this property will trigger replacement.
List<String>
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryptionKey FileSystemEncryptionKey

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsmSetting Changes to this property will trigger replacement. FileSystemHsmSetting
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. FileSystemIdentity
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
maintenanceWindow This property is required. FileSystemMaintenanceWindow
A maintenance_window block as defined below.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
skuName
This property is required.
Changes to this property will trigger replacement.
string
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storageCapacityInTb
This property is required.
Changes to this property will trigger replacement.
number
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnetId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
zones
This property is required.
Changes to this property will trigger replacement.
string[]
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryptionKey FileSystemEncryptionKey

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsmSetting Changes to this property will trigger replacement. FileSystemHsmSetting
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. FileSystemIdentity
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
maintenance_window This property is required. FileSystemMaintenanceWindowArgs
A maintenance_window block as defined below.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
sku_name
This property is required.
Changes to this property will trigger replacement.
str
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storage_capacity_in_tb
This property is required.
Changes to this property will trigger replacement.
int
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnet_id
This property is required.
Changes to this property will trigger replacement.
str
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
zones
This property is required.
Changes to this property will trigger replacement.
Sequence[str]
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryption_key FileSystemEncryptionKeyArgs

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsm_setting Changes to this property will trigger replacement. FileSystemHsmSettingArgs
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. FileSystemIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
maintenanceWindow This property is required. Property Map
A maintenance_window block as defined below.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
skuName
This property is required.
Changes to this property will trigger replacement.
String
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storageCapacityInTb
This property is required.
Changes to this property will trigger replacement.
Number
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnetId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
zones
This property is required.
Changes to this property will trigger replacement.
List<String>
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryptionKey Property Map

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsmSetting Changes to this property will trigger replacement. Property Map
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. Property Map
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags which should be assigned to the Azure Managed Lustre File System.

Outputs

All input properties are implicitly available as output properties. Additionally, the FileSystem resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
MgsAddress string
IP Address of Managed Lustre File System Services.
Id string
The provider-assigned unique ID for this managed resource.
MgsAddress string
IP Address of Managed Lustre File System Services.
id String
The provider-assigned unique ID for this managed resource.
mgsAddress String
IP Address of Managed Lustre File System Services.
id string
The provider-assigned unique ID for this managed resource.
mgsAddress string
IP Address of Managed Lustre File System Services.
id str
The provider-assigned unique ID for this managed resource.
mgs_address str
IP Address of Managed Lustre File System Services.
id String
The provider-assigned unique ID for this managed resource.
mgsAddress String
IP Address of Managed Lustre File System Services.

Look up Existing FileSystem Resource

Get an existing FileSystem resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: FileSystemState, opts?: CustomResourceOptions): FileSystem
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        encryption_key: Optional[FileSystemEncryptionKeyArgs] = None,
        hsm_setting: Optional[FileSystemHsmSettingArgs] = None,
        identity: Optional[FileSystemIdentityArgs] = None,
        location: Optional[str] = None,
        maintenance_window: Optional[FileSystemMaintenanceWindowArgs] = None,
        mgs_address: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        sku_name: Optional[str] = None,
        storage_capacity_in_tb: Optional[int] = None,
        subnet_id: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        zones: Optional[Sequence[str]] = None) -> FileSystem
func GetFileSystem(ctx *Context, name string, id IDInput, state *FileSystemState, opts ...ResourceOption) (*FileSystem, error)
public static FileSystem Get(string name, Input<string> id, FileSystemState? state, CustomResourceOptions? opts = null)
public static FileSystem get(String name, Output<String> id, FileSystemState state, CustomResourceOptions options)
resources:  _:    type: azure:managedlustre:FileSystem    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
EncryptionKey FileSystemEncryptionKey

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

HsmSetting Changes to this property will trigger replacement. FileSystemHsmSetting
A hsm_setting block as defined below. Changing this forces a new resource to be created.
Identity Changes to this property will trigger replacement. FileSystemIdentity
An identity block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
MaintenanceWindow FileSystemMaintenanceWindow
A maintenance_window block as defined below.
MgsAddress string
IP Address of Managed Lustre File System Services.
Name Changes to this property will trigger replacement. string
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
SkuName Changes to this property will trigger replacement. string
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
StorageCapacityInTb Changes to this property will trigger replacement. int
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
SubnetId Changes to this property will trigger replacement. string
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
Zones Changes to this property will trigger replacement. List<string>
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
EncryptionKey FileSystemEncryptionKeyArgs

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

HsmSetting Changes to this property will trigger replacement. FileSystemHsmSettingArgs
A hsm_setting block as defined below. Changing this forces a new resource to be created.
Identity Changes to this property will trigger replacement. FileSystemIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
MaintenanceWindow FileSystemMaintenanceWindowArgs
A maintenance_window block as defined below.
MgsAddress string
IP Address of Managed Lustre File System Services.
Name Changes to this property will trigger replacement. string
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
SkuName Changes to this property will trigger replacement. string
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
StorageCapacityInTb Changes to this property will trigger replacement. int
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
SubnetId Changes to this property will trigger replacement. string
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
Zones Changes to this property will trigger replacement. []string
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryptionKey FileSystemEncryptionKey

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsmSetting Changes to this property will trigger replacement. FileSystemHsmSetting
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. FileSystemIdentity
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
maintenanceWindow FileSystemMaintenanceWindow
A maintenance_window block as defined below.
mgsAddress String
IP Address of Managed Lustre File System Services.
name Changes to this property will trigger replacement. String
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
skuName Changes to this property will trigger replacement. String
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storageCapacityInTb Changes to this property will trigger replacement. Integer
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnetId Changes to this property will trigger replacement. String
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
zones Changes to this property will trigger replacement. List<String>
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryptionKey FileSystemEncryptionKey

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsmSetting Changes to this property will trigger replacement. FileSystemHsmSetting
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. FileSystemIdentity
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
maintenanceWindow FileSystemMaintenanceWindow
A maintenance_window block as defined below.
mgsAddress string
IP Address of Managed Lustre File System Services.
name Changes to this property will trigger replacement. string
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
skuName Changes to this property will trigger replacement. string
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storageCapacityInTb Changes to this property will trigger replacement. number
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnetId Changes to this property will trigger replacement. string
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
zones Changes to this property will trigger replacement. string[]
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryption_key FileSystemEncryptionKeyArgs

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsm_setting Changes to this property will trigger replacement. FileSystemHsmSettingArgs
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. FileSystemIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
maintenance_window FileSystemMaintenanceWindowArgs
A maintenance_window block as defined below.
mgs_address str
IP Address of Managed Lustre File System Services.
name Changes to this property will trigger replacement. str
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
sku_name Changes to this property will trigger replacement. str
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storage_capacity_in_tb Changes to this property will trigger replacement. int
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnet_id Changes to this property will trigger replacement. str
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
zones Changes to this property will trigger replacement. Sequence[str]
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
encryptionKey Property Map

An encryption_key block as defined below.

NOTE: Removing encryption_key forces a new resource to be created.

hsmSetting Changes to this property will trigger replacement. Property Map
A hsm_setting block as defined below. Changing this forces a new resource to be created.
identity Changes to this property will trigger replacement. Property Map
An identity block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
maintenanceWindow Property Map
A maintenance_window block as defined below.
mgsAddress String
IP Address of Managed Lustre File System Services.
name Changes to this property will trigger replacement. String
The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
skuName Changes to this property will trigger replacement. String
The SKU name for the Azure Managed Lustre File System. Possible values are AMLFS-Durable-Premium-40, AMLFS-Durable-Premium-125, AMLFS-Durable-Premium-250 and AMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
storageCapacityInTb Changes to this property will trigger replacement. Number
The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_name has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created.
subnetId Changes to this property will trigger replacement. String
The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags which should be assigned to the Azure Managed Lustre File System.
zones Changes to this property will trigger replacement. List<String>
A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.

Supporting Types

FileSystemEncryptionKey
, FileSystemEncryptionKeyArgs

KeyUrl This property is required. string
The URL to the Key Vault Key used as the Encryption Key. This can be found as id on the azure.keyvault.Key resource.
SourceVaultId This property is required. string
The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.
KeyUrl This property is required. string
The URL to the Key Vault Key used as the Encryption Key. This can be found as id on the azure.keyvault.Key resource.
SourceVaultId This property is required. string
The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.
keyUrl This property is required. String
The URL to the Key Vault Key used as the Encryption Key. This can be found as id on the azure.keyvault.Key resource.
sourceVaultId This property is required. String
The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.
keyUrl This property is required. string
The URL to the Key Vault Key used as the Encryption Key. This can be found as id on the azure.keyvault.Key resource.
sourceVaultId This property is required. string
The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.
key_url This property is required. str
The URL to the Key Vault Key used as the Encryption Key. This can be found as id on the azure.keyvault.Key resource.
source_vault_id This property is required. str
The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.
keyUrl This property is required. String
The URL to the Key Vault Key used as the Encryption Key. This can be found as id on the azure.keyvault.Key resource.
sourceVaultId This property is required. String
The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

FileSystemHsmSetting
, FileSystemHsmSettingArgs

ContainerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
LoggingContainerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
ImportPrefix Changes to this property will trigger replacement. string

The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.

NOTE: The roles Contributor and Storage Blob Data Contributor must be added to the Service Principal HPC Cache Resource Provider for the Storage Account. See official docs for more information.

ContainerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
LoggingContainerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
ImportPrefix Changes to this property will trigger replacement. string

The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.

NOTE: The roles Contributor and Storage Blob Data Contributor must be added to the Service Principal HPC Cache Resource Provider for the Storage Account. See official docs for more information.

containerId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
loggingContainerId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
importPrefix Changes to this property will trigger replacement. String

The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.

NOTE: The roles Contributor and Storage Blob Data Contributor must be added to the Service Principal HPC Cache Resource Provider for the Storage Account. See official docs for more information.

containerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
loggingContainerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
importPrefix Changes to this property will trigger replacement. string

The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.

NOTE: The roles Contributor and Storage Blob Data Contributor must be added to the Service Principal HPC Cache Resource Provider for the Storage Account. See official docs for more information.

container_id
This property is required.
Changes to this property will trigger replacement.
str
The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
logging_container_id
This property is required.
Changes to this property will trigger replacement.
str
The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
import_prefix Changes to this property will trigger replacement. str

The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.

NOTE: The roles Contributor and Storage Blob Data Contributor must be added to the Service Principal HPC Cache Resource Provider for the Storage Account. See official docs for more information.

containerId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
loggingContainerId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
importPrefix Changes to this property will trigger replacement. String

The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.

NOTE: The roles Contributor and Storage Blob Data Contributor must be added to the Service Principal HPC Cache Resource Provider for the Storage Account. See official docs for more information.

FileSystemIdentity
, FileSystemIdentityArgs

IdentityIds
This property is required.
Changes to this property will trigger replacement.
List<string>
A list of User Assigned Managed Identity IDs to be assigned to this Azure Managed Lustre File System. Changing this forces a new resource to be created.
Type
This property is required.
Changes to this property will trigger replacement.
string
The type of Managed Service Identity that should be configured on this Azure Managed Lustre File System. Only possible value is UserAssigned. Changing this forces a new resource to be created.
IdentityIds
This property is required.
Changes to this property will trigger replacement.
[]string
A list of User Assigned Managed Identity IDs to be assigned to this Azure Managed Lustre File System. Changing this forces a new resource to be created.
Type
This property is required.
Changes to this property will trigger replacement.
string
The type of Managed Service Identity that should be configured on this Azure Managed Lustre File System. Only possible value is UserAssigned. Changing this forces a new resource to be created.
identityIds
This property is required.
Changes to this property will trigger replacement.
List<String>
A list of User Assigned Managed Identity IDs to be assigned to this Azure Managed Lustre File System. Changing this forces a new resource to be created.
type
This property is required.
Changes to this property will trigger replacement.
String
The type of Managed Service Identity that should be configured on this Azure Managed Lustre File System. Only possible value is UserAssigned. Changing this forces a new resource to be created.
identityIds
This property is required.
Changes to this property will trigger replacement.
string[]
A list of User Assigned Managed Identity IDs to be assigned to this Azure Managed Lustre File System. Changing this forces a new resource to be created.
type
This property is required.
Changes to this property will trigger replacement.
string
The type of Managed Service Identity that should be configured on this Azure Managed Lustre File System. Only possible value is UserAssigned. Changing this forces a new resource to be created.
identity_ids
This property is required.
Changes to this property will trigger replacement.
Sequence[str]
A list of User Assigned Managed Identity IDs to be assigned to this Azure Managed Lustre File System. Changing this forces a new resource to be created.
type
This property is required.
Changes to this property will trigger replacement.
str
The type of Managed Service Identity that should be configured on this Azure Managed Lustre File System. Only possible value is UserAssigned. Changing this forces a new resource to be created.
identityIds
This property is required.
Changes to this property will trigger replacement.
List<String>
A list of User Assigned Managed Identity IDs to be assigned to this Azure Managed Lustre File System. Changing this forces a new resource to be created.
type
This property is required.
Changes to this property will trigger replacement.
String
The type of Managed Service Identity that should be configured on this Azure Managed Lustre File System. Only possible value is UserAssigned. Changing this forces a new resource to be created.

FileSystemMaintenanceWindow
, FileSystemMaintenanceWindowArgs

DayOfWeek This property is required. string
The day of the week on which the maintenance window will occur. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
TimeOfDayInUtc This property is required. string
The time of day (in UTC) to start the maintenance window.
DayOfWeek This property is required. string
The day of the week on which the maintenance window will occur. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
TimeOfDayInUtc This property is required. string
The time of day (in UTC) to start the maintenance window.
dayOfWeek This property is required. String
The day of the week on which the maintenance window will occur. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
timeOfDayInUtc This property is required. String
The time of day (in UTC) to start the maintenance window.
dayOfWeek This property is required. string
The day of the week on which the maintenance window will occur. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
timeOfDayInUtc This property is required. string
The time of day (in UTC) to start the maintenance window.
day_of_week This property is required. str
The day of the week on which the maintenance window will occur. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
time_of_day_in_utc This property is required. str
The time of day (in UTC) to start the maintenance window.
dayOfWeek This property is required. String
The day of the week on which the maintenance window will occur. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
timeOfDayInUtc This property is required. String
The time of day (in UTC) to start the maintenance window.

Import

Azure Managed Lustre File Systems can be imported using the resource id, e.g.

$ pulumi import azure:managedlustre/fileSystem:FileSystem example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.StorageCache/amlFilesystems/amlFilesystem1
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.