File System Args
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
Constructors
Properties
An encryption_key
block as defined below.
A hsm_setting
block as defined below. Changing this forces a new resource to be created.
An identity
block as defined below. Changing this forces a new resource to be created.
A maintenance_window
block as defined below.
The name of the Resource Group where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
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.
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.