FileSystem

class FileSystem : KotlinCustomResource

Manages an Azure Managed Lustre File System.

Example Usage

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

API Providers

This resource uses the following Azure API Providers:

  • Microsoft.StorageCache: 2023-05-01

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

Properties

Link copied to clipboard

An encryption_key block as defined below.

Link copied to clipboard

A hsm_setting block as defined below. Changing this forces a new resource to be created.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

An identity block as defined below. Changing this forces a new resource to be created.

Link copied to clipboard
val location: Output<String>

The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.

Link copied to clipboard

A maintenance_window block as defined below.

Link copied to clipboard
val mgsAddress: Output<String>

IP Address of Managed Lustre File System Services.

Link copied to clipboard
val name: Output<String>

The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.

Link copied to clipboard
val skuName: Output<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.

Link copied to clipboard

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.

Link copied to clipboard
val subnetId: Output<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.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A mapping of tags which should be assigned to the Azure Managed Lustre File System.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val zones: Output<List<String>>

A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.