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

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

azure.managedlustre.FileSystem

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

    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());
    
        }
    }
    
    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
    

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

    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" },
        },
    });
    
    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"),
    	},
    })
    
    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());
    
    file_system_resource = azure.managedlustre.FileSystem("fileSystemResource",
        maintenance_window=azure.managedlustre.FileSystemMaintenanceWindowArgs(
            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=azure.managedlustre.FileSystemEncryptionKeyArgs(
            key_url="string",
            source_vault_id="string",
        ),
        hsm_setting=azure.managedlustre.FileSystemHsmSettingArgs(
            container_id="string",
            logging_container_id="string",
            import_prefix="string",
        ),
        identity=azure.managedlustre.FileSystemIdentityArgs(
            identity_ids=["string"],
            type="string",
        ),
        location="string",
        name="string",
        tags={
            "string": "string",
        })
    
    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",
        },
    });
    
    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
    

    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. 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 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. 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 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. 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 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. 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 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. 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 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. 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 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.
    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)
    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.
    MgsAddress string
    IP Address of Managed Lustre File System Services.
    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. 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 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.
    MgsAddress string
    IP Address of Managed Lustre File System Services.
    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. 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 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.
    mgsAddress String
    IP Address of Managed Lustre File System Services.
    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. 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 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.
    mgsAddress string
    IP Address of Managed Lustre File System Services.
    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. 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 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.
    mgs_address str
    IP Address of Managed Lustre File System Services.
    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. 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 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.
    mgsAddress String
    IP Address of Managed Lustre File System Services.
    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. 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 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
    The time of day (in UTC) to start the maintenance window.
    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
    The time of day (in UTC) to start the maintenance window.
    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
    The time of day (in UTC) to start the maintenance window.
    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
    The time of day (in UTC) to start the maintenance window.
    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
    The time of day (in UTC) to start the maintenance window.
    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
    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
    

    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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi