We recommend using Azure Native.
azure.managedlustre.FileSystem
Explore with Pulumi AI
Manages an Azure Managed Lustre File System.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.managedlustre.FileSystem;
import com.pulumi.azure.managedlustre.FileSystemArgs;
import com.pulumi.azure.managedlustre.inputs.FileSystemMaintenanceWindowArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
            .name("example-vnet")
            .addressSpaces("10.0.0.0/16")
            .location(example.location())
            .resourceGroupName(example.name())
            .build());
        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
            .name("example-subnet")
            .resourceGroupName(example.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("10.0.2.0/24")
            .build());
        var exampleFileSystem = new FileSystem("exampleFileSystem", FileSystemArgs.builder()
            .name("example-amlfs")
            .resourceGroupName(example.name())
            .location(example.location())
            .skuName("AMLFS-Durable-Premium-250")
            .subnetId(exampleSubnet.id())
            .storageCapacityInTb(8)
            .zones("2")
            .maintenanceWindow(FileSystemMaintenanceWindowArgs.builder()
                .dayOfWeek("Friday")
                .timeOfDayUtc("22:00")
                .build())
            .build());
    }
}
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.
Constructor example
The following reference example uses placeholder values for all input properties.
var fileSystemResource = new Azure.ManagedLustre.FileSystem("fileSystemResource", new()
{
    MaintenanceWindow = new Azure.ManagedLustre.Inputs.FileSystemMaintenanceWindowArgs
    {
        DayOfWeek = "string",
        TimeOfDayInUtc = "string",
    },
    ResourceGroupName = "string",
    SkuName = "string",
    StorageCapacityInTb = 0,
    SubnetId = "string",
    Zones = new[]
    {
        "string",
    },
    EncryptionKey = new Azure.ManagedLustre.Inputs.FileSystemEncryptionKeyArgs
    {
        KeyUrl = "string",
        SourceVaultId = "string",
    },
    HsmSetting = new Azure.ManagedLustre.Inputs.FileSystemHsmSettingArgs
    {
        ContainerId = "string",
        LoggingContainerId = "string",
        ImportPrefix = "string",
    },
    Identity = new Azure.ManagedLustre.Inputs.FileSystemIdentityArgs
    {
        IdentityIds = new[]
        {
            "string",
        },
        Type = "string",
    },
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
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={
        "day_of_week": "string",
        "time_of_day_in_utc": "string",
    },
    resource_group_name="string",
    sku_name="string",
    storage_capacity_in_tb=0,
    subnet_id="string",
    zones=["string"],
    encryption_key={
        "key_url": "string",
        "source_vault_id": "string",
    },
    hsm_setting={
        "container_id": "string",
        "logging_container_id": "string",
        "import_prefix": "string",
    },
    identity={
        "identity_ids": ["string"],
        "type": "string",
    },
    location="string",
    name="string",
    tags={
        "string": "string",
    })
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FileSystem resource accepts the following input properties:
- MaintenanceWindow FileSystem Maintenance Window 
- A maintenance_windowblock as defined below.
- ResourceGroup stringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- StorageCapacity intIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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 FileSystem Encryption Key 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- HsmSetting FileSystem Hsm Setting 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- Identity
FileSystem Identity 
- An identityblock 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.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- MaintenanceWindow FileSystem Maintenance Window Args 
- A maintenance_windowblock as defined below.
- ResourceGroup stringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- StorageCapacity intIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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 FileSystem Encryption Key Args 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- HsmSetting FileSystem Hsm Setting Args 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- Identity
FileSystem Identity Args 
- An identityblock 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.
- map[string]string
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenanceWindow FileSystem Maintenance Window 
- A maintenance_windowblock as defined below.
- resourceGroup StringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storageCapacity IntegerIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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 FileSystem Encryption Key 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsmSetting FileSystem Hsm Setting 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity
FileSystem Identity 
- An identityblock 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.
- Map<String,String>
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenanceWindow FileSystem Maintenance Window 
- A maintenance_windowblock as defined below.
- resourceGroup stringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storageCapacity numberIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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 FileSystem Encryption Key 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsmSetting FileSystem Hsm Setting 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity
FileSystem Identity 
- An identityblock 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.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenance_window FileSystem Maintenance Window Args 
- A maintenance_windowblock as defined below.
- resource_group_ strname 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storage_capacity_ intin_ tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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 FileSystem Encryption Key Args 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsm_setting FileSystem Hsm Setting Args 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity
FileSystem Identity Args 
- An identityblock 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.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenanceWindow Property Map
- A maintenance_windowblock as defined below.
- resourceGroup StringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storageCapacity NumberIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsmSetting Property Map
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity Property Map
- An identityblock 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.
- 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) -> FileSystemfunc GetFileSystem(ctx *Context, name string, id IDInput, state *FileSystemState, opts ...ResourceOption) (*FileSystem, error)public static FileSystem Get(string name, Input<string> id, FileSystemState? state, CustomResourceOptions? opts = null)public static FileSystem get(String name, Output<String> id, FileSystemState state, CustomResourceOptions options)resources:  _:    type: azure:managedlustre:FileSystem    get:      id: ${id}- name
- 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.
- EncryptionKey FileSystem Encryption Key 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- HsmSetting FileSystem Hsm Setting 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- Identity
FileSystem Identity 
- An identityblock 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 FileSystem Maintenance Window 
- A maintenance_windowblock 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.
- ResourceGroup stringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- StorageCapacity intIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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.
- 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 FileSystem Encryption Key Args 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- HsmSetting FileSystem Hsm Setting Args 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- Identity
FileSystem Identity Args 
- An identityblock 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 FileSystem Maintenance Window Args 
- A maintenance_windowblock 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.
- ResourceGroup stringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- StorageCapacity intIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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.
- 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 FileSystem Encryption Key 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsmSetting FileSystem Hsm Setting 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity
FileSystem Identity 
- An identityblock 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 FileSystem Maintenance Window 
- A maintenance_windowblock 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.
- resourceGroup StringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storageCapacity IntegerIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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.
- 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 FileSystem Encryption Key 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsmSetting FileSystem Hsm Setting 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity
FileSystem Identity 
- An identityblock 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 FileSystem Maintenance Window 
- A maintenance_windowblock 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.
- resourceGroup stringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storageCapacity numberIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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.
- {[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 FileSystem Encryption Key Args 
- An - encryption_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsm_setting FileSystem Hsm Setting Args 
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity
FileSystem Identity Args 
- An identityblock 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 FileSystem Maintenance Window Args 
- A maintenance_windowblock 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_ strname 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storage_capacity_ intin_ tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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.
- 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_keyblock as defined below.- NOTE: Removing - encryption_keyforces a new resource to be created.
- hsmSetting Property Map
- A hsm_settingblock as defined below. Changing this forces a new resource to be created.
- identity Property Map
- An identityblock 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_windowblock 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.
- resourceGroup StringName 
- 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-250andAMLFS-Durable-Premium-500. Changing this forces a new resource to be created.
- storageCapacity NumberIn Tb 
- The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which sku_namehas 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.
- 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 idon theazure.keyvault.Keyresource.
- SourceVault stringId 
- The ID of the source Key Vault. This can be found as idon theazure.keyvault.KeyVaultresource.
- KeyUrl string
- The URL to the Key Vault Key used as the Encryption Key. This can be found as idon theazure.keyvault.Keyresource.
- SourceVault stringId 
- The ID of the source Key Vault. This can be found as idon theazure.keyvault.KeyVaultresource.
- keyUrl String
- The URL to the Key Vault Key used as the Encryption Key. This can be found as idon theazure.keyvault.Keyresource.
- sourceVault StringId 
- The ID of the source Key Vault. This can be found as idon theazure.keyvault.KeyVaultresource.
- keyUrl string
- The URL to the Key Vault Key used as the Encryption Key. This can be found as idon theazure.keyvault.Keyresource.
- sourceVault stringId 
- The ID of the source Key Vault. This can be found as idon theazure.keyvault.KeyVaultresource.
- key_url str
- The URL to the Key Vault Key used as the Encryption Key. This can be found as idon theazure.keyvault.Keyresource.
- source_vault_ strid 
- The ID of the source Key Vault. This can be found as idon theazure.keyvault.KeyVaultresource.
- keyUrl String
- The URL to the Key Vault Key used as the Encryption Key. This can be found as idon theazure.keyvault.Keyresource.
- sourceVault StringId 
- The ID of the source Key Vault. This can be found as idon theazure.keyvault.KeyVaultresource.
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.
- LoggingContainer stringId 
- 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 - Contributorand- Storage Blob Data Contributormust be added to the Service Principal- HPC Cache Resource Providerfor 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.
- LoggingContainer stringId 
- 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 - Contributorand- Storage Blob Data Contributormust be added to the Service Principal- HPC Cache Resource Providerfor 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.
- loggingContainer StringId 
- 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 - Contributorand- Storage Blob Data Contributormust be added to the Service Principal- HPC Cache Resource Providerfor 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.
- loggingContainer stringId 
- 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 - Contributorand- Storage Blob Data Contributormust be added to the Service Principal- HPC Cache Resource Providerfor 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_ strid 
- 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 - Contributorand- Storage Blob Data Contributormust be added to the Service Principal- HPC Cache Resource Providerfor 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.
- loggingContainer StringId 
- 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 - Contributorand- Storage Blob Data Contributormust be added to the Service Principal- HPC Cache Resource Providerfor 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        
- DayOf stringWeek 
- The day of the week on which the maintenance window will occur. Possible values are Sunday,Monday,Tuesday,Wednesday,Thursday,FridayandSaturday.
- TimeOf stringDay In Utc 
- The time of day (in UTC) to start the maintenance window.
- DayOf stringWeek 
- The day of the week on which the maintenance window will occur. Possible values are Sunday,Monday,Tuesday,Wednesday,Thursday,FridayandSaturday.
- TimeOf stringDay In Utc 
- The time of day (in UTC) to start the maintenance window.
- dayOf StringWeek 
- The day of the week on which the maintenance window will occur. Possible values are Sunday,Monday,Tuesday,Wednesday,Thursday,FridayandSaturday.
- timeOf StringDay In Utc 
- The time of day (in UTC) to start the maintenance window.
- dayOf stringWeek 
- The day of the week on which the maintenance window will occur. Possible values are Sunday,Monday,Tuesday,Wednesday,Thursday,FridayandSaturday.
- timeOf stringDay In Utc 
- The time of day (in UTC) to start the maintenance window.
- day_of_ strweek 
- The day of the week on which the maintenance window will occur. Possible values are Sunday,Monday,Tuesday,Wednesday,Thursday,FridayandSaturday.
- time_of_ strday_ in_ utc 
- The time of day (in UTC) to start the maintenance window.
- dayOf StringWeek 
- The day of the week on which the maintenance window will occur. Possible values are Sunday,Monday,Tuesday,Wednesday,Thursday,FridayandSaturday.
- timeOf StringDay In Utc 
- 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 azurermTerraform Provider.