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

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.managedlustre.FileSystem

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

    Manages an Azure Managed Lustre File System.

    Example Usage

    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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
                .addressSpaces("10.0.0.0/16")
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .build());
    
            var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .virtualNetworkName(exampleVirtualNetwork.name())
                .addressPrefixes("10.0.2.0/24")
                .build());
    
            var exampleFileSystem = new FileSystem("exampleFileSystem", FileSystemArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .skuName("AMLFS-Durable-Premium-250")
                .subnetId(exampleSubnet.id())
                .storageCapacityInTb(8)
                .zones("2")
                .maintenanceWindow(FileSystemMaintenanceWindowArgs.builder()
                    .dayOfWeek("Friday")
                    .timeOfDayUtc("22:00")
                    .build())
                .build());
    
        }
    }
    

    Coming soon!

    Coming soon!

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

    Create FileSystem Resource

    new FileSystem(name: string, args: FileSystemArgs, opts?: CustomResourceOptions);
    @overload
    def FileSystem(resource_name: 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,
                   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)
    @overload
    def FileSystem(resource_name: str,
                   args: FileSystemArgs,
                   opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args FileSystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args FileSystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileSystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileSystemArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The FileSystem resource accepts the following input properties:

    MaintenanceWindow FileSystemMaintenanceWindow

    A maintenance_window block as defined below.

    ResourceGroupName 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 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 int

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    SubnetId 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 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 FileSystemHsmSetting

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

    Identity FileSystemIdentity

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

    Location string

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

    Name 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 FileSystemMaintenanceWindowArgs

    A maintenance_window block as defined below.

    ResourceGroupName 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 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 int

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    SubnetId 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 []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 FileSystemHsmSettingArgs

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

    Identity FileSystemIdentityArgs

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

    Location string

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

    Name 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 FileSystemMaintenanceWindow

    A maintenance_window block as defined below.

    resourceGroupName 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 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 Integer

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnetId 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 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 FileSystemHsmSetting

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

    identity FileSystemIdentity

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

    location String

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

    name 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 FileSystemMaintenanceWindow

    A maintenance_window block as defined below.

    resourceGroupName 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 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 number

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnetId 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 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 FileSystemHsmSetting

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

    identity FileSystemIdentity

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

    location string

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

    name 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 FileSystemMaintenanceWindowArgs

    A maintenance_window block as defined below.

    resource_group_name 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 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 int

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnet_id 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 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 FileSystemHsmSettingArgs

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

    identity FileSystemIdentityArgs

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

    location str

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

    name 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 Property Map

    A maintenance_window block as defined below.

    resourceGroupName 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 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 Number

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnetId 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 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 Property Map

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

    identity Property Map

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

    location String

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

    name 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.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    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,
            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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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 FileSystemHsmSetting

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

    Identity FileSystemIdentity

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

    Location 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.

    Name string

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

    ResourceGroupName 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 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 int

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    SubnetId 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 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 FileSystemHsmSettingArgs

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

    Identity FileSystemIdentityArgs

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

    Location 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.

    Name string

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

    ResourceGroupName 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 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 int

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    SubnetId 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 []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 FileSystemHsmSetting

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

    identity FileSystemIdentity

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

    location 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.

    name String

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

    resourceGroupName 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 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 Integer

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnetId 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 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 FileSystemHsmSetting

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

    identity FileSystemIdentity

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

    location 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.

    name string

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

    resourceGroupName 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 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 number

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnetId 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 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 FileSystemHsmSettingArgs

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

    identity FileSystemIdentityArgs

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

    location 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.

    name 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 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 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 int

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnet_id 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 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 Property Map

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

    identity Property Map

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

    location 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.

    name String

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

    resourceGroupName 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 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 Number

    The size of the Azure Managed Lustre File System in TiB. Possible values are between 8 and 128 and must be divisible by 8. Changing this forces a new resource to be created.

    subnetId 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 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 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 string

    The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

    KeyUrl 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 string

    The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

    keyUrl 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 String

    The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

    keyUrl 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 string

    The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

    key_url 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 str

    The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

    keyUrl 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 String

    The ID of the source Key Vault. This can be found as id on the azure.keyvault.KeyVault resource.

    FileSystemHsmSetting, FileSystemHsmSettingArgs

    ContainerId 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 []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 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 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 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 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 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 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 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 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 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 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 string
    DayOfWeek 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 string
    dayOfWeek 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 String
    dayOfWeek 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 string
    day_of_week 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 str
    dayOfWeek 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 String

    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
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi