1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Lustre
  5. FileStorageLustreFileSystem
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.Lustre.FileStorageLustreFileSystem

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

    This resource provides the Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.

    Creates a Lustre file system.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testLustreFileSystem = new oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system", {
        availabilityDomain: lustreFileSystemAvailabilityDomain,
        capacityInGbs: lustreFileSystemCapacityInGbs,
        compartmentId: compartmentId,
        fileSystemName: testFileSystem.name,
        performanceTier: lustreFileSystemPerformanceTier,
        rootSquashConfiguration: {
            clientExceptions: lustreFileSystemRootSquashConfigurationClientExceptions,
            identitySquash: lustreFileSystemRootSquashConfigurationIdentitySquash,
            squashGid: lustreFileSystemRootSquashConfigurationSquashGid,
            squashUid: lustreFileSystemRootSquashConfigurationSquashUid,
        },
        subnetId: testSubnet.id,
        clusterPlacementGroupId: testClusterPlacementGroup.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: lustreFileSystemDisplayName,
        fileSystemDescription: lustreFileSystemFileSystemDescription,
        freeformTags: {
            Department: "Finance",
        },
        kmsKeyId: testKey.id,
        nsgIds: lustreFileSystemNsgIds,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_lustre_file_system = oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system",
        availability_domain=lustre_file_system_availability_domain,
        capacity_in_gbs=lustre_file_system_capacity_in_gbs,
        compartment_id=compartment_id,
        file_system_name=test_file_system["name"],
        performance_tier=lustre_file_system_performance_tier,
        root_squash_configuration={
            "client_exceptions": lustre_file_system_root_squash_configuration_client_exceptions,
            "identity_squash": lustre_file_system_root_squash_configuration_identity_squash,
            "squash_gid": lustre_file_system_root_squash_configuration_squash_gid,
            "squash_uid": lustre_file_system_root_squash_configuration_squash_uid,
        },
        subnet_id=test_subnet["id"],
        cluster_placement_group_id=test_cluster_placement_group["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=lustre_file_system_display_name,
        file_system_description=lustre_file_system_file_system_description,
        freeform_tags={
            "Department": "Finance",
        },
        kms_key_id=test_key["id"],
        nsg_ids=lustre_file_system_nsg_ids)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/lustre"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := lustre.NewFileStorageLustreFileSystem(ctx, "test_lustre_file_system", &lustre.FileStorageLustreFileSystemArgs{
    			AvailabilityDomain: pulumi.Any(lustreFileSystemAvailabilityDomain),
    			CapacityInGbs:      pulumi.Any(lustreFileSystemCapacityInGbs),
    			CompartmentId:      pulumi.Any(compartmentId),
    			FileSystemName:     pulumi.Any(testFileSystem.Name),
    			PerformanceTier:    pulumi.Any(lustreFileSystemPerformanceTier),
    			RootSquashConfiguration: &lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs{
    				ClientExceptions: pulumi.Any(lustreFileSystemRootSquashConfigurationClientExceptions),
    				IdentitySquash:   pulumi.Any(lustreFileSystemRootSquashConfigurationIdentitySquash),
    				SquashGid:        pulumi.Any(lustreFileSystemRootSquashConfigurationSquashGid),
    				SquashUid:        pulumi.Any(lustreFileSystemRootSquashConfigurationSquashUid),
    			},
    			SubnetId:                pulumi.Any(testSubnet.Id),
    			ClusterPlacementGroupId: pulumi.Any(testClusterPlacementGroup.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			DisplayName:           pulumi.Any(lustreFileSystemDisplayName),
    			FileSystemDescription: pulumi.Any(lustreFileSystemFileSystemDescription),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			KmsKeyId: pulumi.Any(testKey.Id),
    			NsgIds:   pulumi.Any(lustreFileSystemNsgIds),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testLustreFileSystem = new Oci.Lustre.FileStorageLustreFileSystem("test_lustre_file_system", new()
        {
            AvailabilityDomain = lustreFileSystemAvailabilityDomain,
            CapacityInGbs = lustreFileSystemCapacityInGbs,
            CompartmentId = compartmentId,
            FileSystemName = testFileSystem.Name,
            PerformanceTier = lustreFileSystemPerformanceTier,
            RootSquashConfiguration = new Oci.Lustre.Inputs.FileStorageLustreFileSystemRootSquashConfigurationArgs
            {
                ClientExceptions = lustreFileSystemRootSquashConfigurationClientExceptions,
                IdentitySquash = lustreFileSystemRootSquashConfigurationIdentitySquash,
                SquashGid = lustreFileSystemRootSquashConfigurationSquashGid,
                SquashUid = lustreFileSystemRootSquashConfigurationSquashUid,
            },
            SubnetId = testSubnet.Id,
            ClusterPlacementGroupId = testClusterPlacementGroup.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = lustreFileSystemDisplayName,
            FileSystemDescription = lustreFileSystemFileSystemDescription,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            KmsKeyId = testKey.Id,
            NsgIds = lustreFileSystemNsgIds,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Lustre.FileStorageLustreFileSystem;
    import com.pulumi.oci.Lustre.FileStorageLustreFileSystemArgs;
    import com.pulumi.oci.Lustre.inputs.FileStorageLustreFileSystemRootSquashConfigurationArgs;
    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 testLustreFileSystem = new FileStorageLustreFileSystem("testLustreFileSystem", FileStorageLustreFileSystemArgs.builder()
                .availabilityDomain(lustreFileSystemAvailabilityDomain)
                .capacityInGbs(lustreFileSystemCapacityInGbs)
                .compartmentId(compartmentId)
                .fileSystemName(testFileSystem.name())
                .performanceTier(lustreFileSystemPerformanceTier)
                .rootSquashConfiguration(FileStorageLustreFileSystemRootSquashConfigurationArgs.builder()
                    .clientExceptions(lustreFileSystemRootSquashConfigurationClientExceptions)
                    .identitySquash(lustreFileSystemRootSquashConfigurationIdentitySquash)
                    .squashGid(lustreFileSystemRootSquashConfigurationSquashGid)
                    .squashUid(lustreFileSystemRootSquashConfigurationSquashUid)
                    .build())
                .subnetId(testSubnet.id())
                .clusterPlacementGroupId(testClusterPlacementGroup.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(lustreFileSystemDisplayName)
                .fileSystemDescription(lustreFileSystemFileSystemDescription)
                .freeformTags(Map.of("Department", "Finance"))
                .kmsKeyId(testKey.id())
                .nsgIds(lustreFileSystemNsgIds)
                .build());
    
        }
    }
    
    resources:
      testLustreFileSystem:
        type: oci:Lustre:FileStorageLustreFileSystem
        name: test_lustre_file_system
        properties:
          availabilityDomain: ${lustreFileSystemAvailabilityDomain}
          capacityInGbs: ${lustreFileSystemCapacityInGbs}
          compartmentId: ${compartmentId}
          fileSystemName: ${testFileSystem.name}
          performanceTier: ${lustreFileSystemPerformanceTier}
          rootSquashConfiguration:
            clientExceptions: ${lustreFileSystemRootSquashConfigurationClientExceptions}
            identitySquash: ${lustreFileSystemRootSquashConfigurationIdentitySquash}
            squashGid: ${lustreFileSystemRootSquashConfigurationSquashGid}
            squashUid: ${lustreFileSystemRootSquashConfigurationSquashUid}
          subnetId: ${testSubnet.id}
          clusterPlacementGroupId: ${testClusterPlacementGroup.id}
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${lustreFileSystemDisplayName}
          fileSystemDescription: ${lustreFileSystemFileSystemDescription}
          freeformTags:
            Department: Finance
          kmsKeyId: ${testKey.id}
          nsgIds: ${lustreFileSystemNsgIds}
    

    Create FileStorageLustreFileSystem Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FileStorageLustreFileSystem(name: string, args: FileStorageLustreFileSystemArgs, opts?: CustomResourceOptions);
    @overload
    def FileStorageLustreFileSystem(resource_name: str,
                                    args: FileStorageLustreFileSystemArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def FileStorageLustreFileSystem(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    file_system_name: Optional[str] = None,
                                    capacity_in_gbs: Optional[int] = None,
                                    subnet_id: Optional[str] = None,
                                    compartment_id: Optional[str] = None,
                                    root_squash_configuration: Optional[_lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs] = None,
                                    performance_tier: Optional[str] = None,
                                    availability_domain: Optional[str] = None,
                                    file_system_description: Optional[str] = None,
                                    freeform_tags: Optional[Mapping[str, str]] = None,
                                    kms_key_id: Optional[str] = None,
                                    nsg_ids: Optional[Sequence[str]] = None,
                                    display_name: Optional[str] = None,
                                    defined_tags: Optional[Mapping[str, str]] = None,
                                    cluster_placement_group_id: Optional[str] = None,
                                    system_tags: Optional[Mapping[str, str]] = None)
    func NewFileStorageLustreFileSystem(ctx *Context, name string, args FileStorageLustreFileSystemArgs, opts ...ResourceOption) (*FileStorageLustreFileSystem, error)
    public FileStorageLustreFileSystem(string name, FileStorageLustreFileSystemArgs args, CustomResourceOptions? opts = null)
    public FileStorageLustreFileSystem(String name, FileStorageLustreFileSystemArgs args)
    public FileStorageLustreFileSystem(String name, FileStorageLustreFileSystemArgs args, CustomResourceOptions options)
    
    type: oci:Lustre:FileStorageLustreFileSystem
    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 FileStorageLustreFileSystemArgs
    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 FileStorageLustreFileSystemArgs
    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 FileStorageLustreFileSystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileStorageLustreFileSystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileStorageLustreFileSystemArgs
    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 fileStorageLustreFileSystemResource = new Oci.Lustre.FileStorageLustreFileSystem("fileStorageLustreFileSystemResource", new()
    {
        FileSystemName = "string",
        CapacityInGbs = 0,
        SubnetId = "string",
        CompartmentId = "string",
        RootSquashConfiguration = new Oci.Lustre.Inputs.FileStorageLustreFileSystemRootSquashConfigurationArgs
        {
            ClientExceptions = new[]
            {
                "string",
            },
            IdentitySquash = "string",
            SquashGid = "string",
            SquashUid = "string",
        },
        PerformanceTier = "string",
        AvailabilityDomain = "string",
        FileSystemDescription = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        KmsKeyId = "string",
        NsgIds = new[]
        {
            "string",
        },
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        ClusterPlacementGroupId = "string",
        SystemTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := lustre.NewFileStorageLustreFileSystem(ctx, "fileStorageLustreFileSystemResource", &lustre.FileStorageLustreFileSystemArgs{
    	FileSystemName: pulumi.String("string"),
    	CapacityInGbs:  pulumi.Int(0),
    	SubnetId:       pulumi.String("string"),
    	CompartmentId:  pulumi.String("string"),
    	RootSquashConfiguration: &lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs{
    		ClientExceptions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		IdentitySquash: pulumi.String("string"),
    		SquashGid:      pulumi.String("string"),
    		SquashUid:      pulumi.String("string"),
    	},
    	PerformanceTier:       pulumi.String("string"),
    	AvailabilityDomain:    pulumi.String("string"),
    	FileSystemDescription: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	KmsKeyId: pulumi.String("string"),
    	NsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	ClusterPlacementGroupId: pulumi.String("string"),
    	SystemTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var fileStorageLustreFileSystemResource = new FileStorageLustreFileSystem("fileStorageLustreFileSystemResource", FileStorageLustreFileSystemArgs.builder()
        .fileSystemName("string")
        .capacityInGbs(0)
        .subnetId("string")
        .compartmentId("string")
        .rootSquashConfiguration(FileStorageLustreFileSystemRootSquashConfigurationArgs.builder()
            .clientExceptions("string")
            .identitySquash("string")
            .squashGid("string")
            .squashUid("string")
            .build())
        .performanceTier("string")
        .availabilityDomain("string")
        .fileSystemDescription("string")
        .freeformTags(Map.of("string", "string"))
        .kmsKeyId("string")
        .nsgIds("string")
        .displayName("string")
        .definedTags(Map.of("string", "string"))
        .clusterPlacementGroupId("string")
        .systemTags(Map.of("string", "string"))
        .build());
    
    file_storage_lustre_file_system_resource = oci.lustre.FileStorageLustreFileSystem("fileStorageLustreFileSystemResource",
        file_system_name="string",
        capacity_in_gbs=0,
        subnet_id="string",
        compartment_id="string",
        root_squash_configuration={
            "client_exceptions": ["string"],
            "identity_squash": "string",
            "squash_gid": "string",
            "squash_uid": "string",
        },
        performance_tier="string",
        availability_domain="string",
        file_system_description="string",
        freeform_tags={
            "string": "string",
        },
        kms_key_id="string",
        nsg_ids=["string"],
        display_name="string",
        defined_tags={
            "string": "string",
        },
        cluster_placement_group_id="string",
        system_tags={
            "string": "string",
        })
    
    const fileStorageLustreFileSystemResource = new oci.lustre.FileStorageLustreFileSystem("fileStorageLustreFileSystemResource", {
        fileSystemName: "string",
        capacityInGbs: 0,
        subnetId: "string",
        compartmentId: "string",
        rootSquashConfiguration: {
            clientExceptions: ["string"],
            identitySquash: "string",
            squashGid: "string",
            squashUid: "string",
        },
        performanceTier: "string",
        availabilityDomain: "string",
        fileSystemDescription: "string",
        freeformTags: {
            string: "string",
        },
        kmsKeyId: "string",
        nsgIds: ["string"],
        displayName: "string",
        definedTags: {
            string: "string",
        },
        clusterPlacementGroupId: "string",
        systemTags: {
            string: "string",
        },
    });
    
    type: oci:Lustre:FileStorageLustreFileSystem
    properties:
        availabilityDomain: string
        capacityInGbs: 0
        clusterPlacementGroupId: string
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        fileSystemDescription: string
        fileSystemName: string
        freeformTags:
            string: string
        kmsKeyId: string
        nsgIds:
            - string
        performanceTier: string
        rootSquashConfiguration:
            clientExceptions:
                - string
            identitySquash: string
            squashGid: string
            squashUid: string
        subnetId: string
        systemTags:
            string: string
    

    FileStorageLustreFileSystem 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 FileStorageLustreFileSystem resource accepts the following input properties:

    AvailabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    CapacityInGbs int
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    FileSystemName string
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    PerformanceTier string
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    RootSquashConfiguration FileStorageLustreFileSystemRootSquashConfiguration
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    SubnetId string

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ClusterPlacementGroupId string
    The OCID of the cluster placement group in which the Lustre file system exists.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    FileSystemDescription string
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    KmsKeyId string
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    NsgIds List<string>
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    AvailabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    CapacityInGbs int
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    FileSystemName string
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    PerformanceTier string
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    RootSquashConfiguration FileStorageLustreFileSystemRootSquashConfigurationArgs
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    SubnetId string

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ClusterPlacementGroupId string
    The OCID of the cluster placement group in which the Lustre file system exists.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    FileSystemDescription string
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    KmsKeyId string
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    NsgIds []string
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    availabilityDomain String
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacityInGbs Integer
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    compartmentId String
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    fileSystemName String
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    performanceTier String
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    rootSquashConfiguration FileStorageFileSystemRootSquashConfiguration
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    subnetId String

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    clusterPlacementGroupId String
    The OCID of the cluster placement group in which the Lustre file system exists.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    fileSystemDescription String
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kmsKeyId String
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    nsgIds List<String>
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    availabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacityInGbs number
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    compartmentId string
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    fileSystemName string
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    performanceTier string
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    rootSquashConfiguration FileStorageLustreFileSystemRootSquashConfiguration
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    subnetId string

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    clusterPlacementGroupId string
    The OCID of the cluster placement group in which the Lustre file system exists.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    fileSystemDescription string
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kmsKeyId string
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    nsgIds string[]
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    availability_domain str
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacity_in_gbs int
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    compartment_id str
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    file_system_name str
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    performance_tier str
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    root_squash_configuration lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    subnet_id str

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    cluster_placement_group_id str
    The OCID of the cluster placement group in which the Lustre file system exists.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    file_system_description str
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kms_key_id str
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    nsg_ids Sequence[str]
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    availabilityDomain String
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacityInGbs Number
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    compartmentId String
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    fileSystemName String
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    performanceTier String
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    rootSquashConfiguration Property Map
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    subnetId String

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    clusterPlacementGroupId String
    The OCID of the cluster placement group in which the Lustre file system exists.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    fileSystemDescription String
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kmsKeyId String
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    nsgIds List<String>
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FileStorageLustreFileSystem resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    Lnet string
    Type of network used by clients to mount the file system. Example: tcp
    MaintenanceWindows List<FileStorageLustreFileSystemMaintenanceWindow>
    The preferred day and time to perform maintenance.
    MajorVersion string
    Major version of Lustre running in the Lustre file system. Example: 2.15
    ManagementServiceAddress string
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    State string
    The current state of the Lustre file system.
    TimeBillingCycleEnd string
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    TimeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    Lnet string
    Type of network used by clients to mount the file system. Example: tcp
    MaintenanceWindows []FileStorageLustreFileSystemMaintenanceWindow
    The preferred day and time to perform maintenance.
    MajorVersion string
    Major version of Lustre running in the Lustre file system. Example: 2.15
    ManagementServiceAddress string
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    State string
    The current state of the Lustre file system.
    TimeBillingCycleEnd string
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    TimeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet String
    Type of network used by clients to mount the file system. Example: tcp
    maintenanceWindows List<FileStorageFileSystemMaintenanceWindow>
    The preferred day and time to perform maintenance.
    majorVersion String
    Major version of Lustre running in the Lustre file system. Example: 2.15
    managementServiceAddress String
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    state String
    The current state of the Lustre file system.
    timeBillingCycleEnd String
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    timeCreated String
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated String
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet string
    Type of network used by clients to mount the file system. Example: tcp
    maintenanceWindows FileStorageLustreFileSystemMaintenanceWindow[]
    The preferred day and time to perform maintenance.
    majorVersion string
    Major version of Lustre running in the Lustre file system. Example: 2.15
    managementServiceAddress string
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    state string
    The current state of the Lustre file system.
    timeBillingCycleEnd string
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    timeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated string
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet str
    Type of network used by clients to mount the file system. Example: tcp
    maintenance_windows Sequence[lustre.FileStorageLustreFileSystemMaintenanceWindow]
    The preferred day and time to perform maintenance.
    major_version str
    Major version of Lustre running in the Lustre file system. Example: 2.15
    management_service_address str
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    state str
    The current state of the Lustre file system.
    time_billing_cycle_end str
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    time_created str
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    time_updated str
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet String
    Type of network used by clients to mount the file system. Example: tcp
    maintenanceWindows List<Property Map>
    The preferred day and time to perform maintenance.
    majorVersion String
    Major version of Lustre running in the Lustre file system. Example: 2.15
    managementServiceAddress String
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    state String
    The current state of the Lustre file system.
    timeBillingCycleEnd String
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    timeCreated String
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated String
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z

    Look up Existing FileStorageLustreFileSystem Resource

    Get an existing FileStorageLustreFileSystem 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?: FileStorageLustreFileSystemState, opts?: CustomResourceOptions): FileStorageLustreFileSystem
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_domain: Optional[str] = None,
            capacity_in_gbs: Optional[int] = None,
            cluster_placement_group_id: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            file_system_description: Optional[str] = None,
            file_system_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            kms_key_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            lnet: Optional[str] = None,
            maintenance_windows: Optional[Sequence[_lustre.FileStorageLustreFileSystemMaintenanceWindowArgs]] = None,
            major_version: Optional[str] = None,
            management_service_address: Optional[str] = None,
            nsg_ids: Optional[Sequence[str]] = None,
            performance_tier: Optional[str] = None,
            root_squash_configuration: Optional[_lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_billing_cycle_end: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> FileStorageLustreFileSystem
    func GetFileStorageLustreFileSystem(ctx *Context, name string, id IDInput, state *FileStorageLustreFileSystemState, opts ...ResourceOption) (*FileStorageLustreFileSystem, error)
    public static FileStorageLustreFileSystem Get(string name, Input<string> id, FileStorageLustreFileSystemState? state, CustomResourceOptions? opts = null)
    public static FileStorageLustreFileSystem get(String name, Output<String> id, FileStorageLustreFileSystemState state, CustomResourceOptions options)
    resources:  _:    type: oci:Lustre:FileStorageLustreFileSystem    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.
    The following state arguments are supported:
    AvailabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    CapacityInGbs int
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    ClusterPlacementGroupId string
    The OCID of the cluster placement group in which the Lustre file system exists.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    FileSystemDescription string
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    FileSystemName string
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    KmsKeyId string
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    LifecycleDetails string
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    Lnet string
    Type of network used by clients to mount the file system. Example: tcp
    MaintenanceWindows List<FileStorageLustreFileSystemMaintenanceWindow>
    The preferred day and time to perform maintenance.
    MajorVersion string
    Major version of Lustre running in the Lustre file system. Example: 2.15
    ManagementServiceAddress string
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    NsgIds List<string>
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    PerformanceTier string
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    RootSquashConfiguration FileStorageLustreFileSystemRootSquashConfiguration
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    State string
    The current state of the Lustre file system.
    SubnetId string

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeBillingCycleEnd string
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    TimeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    AvailabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    CapacityInGbs int
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    ClusterPlacementGroupId string
    The OCID of the cluster placement group in which the Lustre file system exists.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    FileSystemDescription string
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    FileSystemName string
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    KmsKeyId string
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    LifecycleDetails string
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    Lnet string
    Type of network used by clients to mount the file system. Example: tcp
    MaintenanceWindows []FileStorageLustreFileSystemMaintenanceWindowArgs
    The preferred day and time to perform maintenance.
    MajorVersion string
    Major version of Lustre running in the Lustre file system. Example: 2.15
    ManagementServiceAddress string
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    NsgIds []string
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    PerformanceTier string
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    RootSquashConfiguration FileStorageLustreFileSystemRootSquashConfigurationArgs
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    State string
    The current state of the Lustre file system.
    SubnetId string

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeBillingCycleEnd string
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    TimeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availabilityDomain String
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacityInGbs Integer
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    clusterPlacementGroupId String
    The OCID of the cluster placement group in which the Lustre file system exists.
    compartmentId String
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    fileSystemDescription String
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    fileSystemName String
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kmsKeyId String
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    lifecycleDetails String
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet String
    Type of network used by clients to mount the file system. Example: tcp
    maintenanceWindows List<FileStorageFileSystemMaintenanceWindow>
    The preferred day and time to perform maintenance.
    majorVersion String
    Major version of Lustre running in the Lustre file system. Example: 2.15
    managementServiceAddress String
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    nsgIds List<String>
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    performanceTier String
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    rootSquashConfiguration FileStorageFileSystemRootSquashConfiguration
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    state String
    The current state of the Lustre file system.
    subnetId String

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeBillingCycleEnd String
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    timeCreated String
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated String
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacityInGbs number
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    clusterPlacementGroupId string
    The OCID of the cluster placement group in which the Lustre file system exists.
    compartmentId string
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    fileSystemDescription string
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    fileSystemName string
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kmsKeyId string
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    lifecycleDetails string
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet string
    Type of network used by clients to mount the file system. Example: tcp
    maintenanceWindows FileStorageLustreFileSystemMaintenanceWindow[]
    The preferred day and time to perform maintenance.
    majorVersion string
    Major version of Lustre running in the Lustre file system. Example: 2.15
    managementServiceAddress string
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    nsgIds string[]
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    performanceTier string
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    rootSquashConfiguration FileStorageLustreFileSystemRootSquashConfiguration
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    state string
    The current state of the Lustre file system.
    subnetId string

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeBillingCycleEnd string
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    timeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated string
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availability_domain str
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacity_in_gbs int
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    cluster_placement_group_id str
    The OCID of the cluster placement group in which the Lustre file system exists.
    compartment_id str
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    file_system_description str
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    file_system_name str
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kms_key_id str
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    lifecycle_details str
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet str
    Type of network used by clients to mount the file system. Example: tcp
    maintenance_windows Sequence[lustre.FileStorageLustreFileSystemMaintenanceWindowArgs]
    The preferred day and time to perform maintenance.
    major_version str
    Major version of Lustre running in the Lustre file system. Example: 2.15
    management_service_address str
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    nsg_ids Sequence[str]
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    performance_tier str
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    root_squash_configuration lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    state str
    The current state of the Lustre file system.
    subnet_id str

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_billing_cycle_end str
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    time_created str
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    time_updated str
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availabilityDomain String
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    capacityInGbs Number
    (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
    clusterPlacementGroupId String
    The OCID of the cluster placement group in which the Lustre file system exists.
    compartmentId String
    (Updatable) The OCID of the compartment that contains the Lustre file system.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
    fileSystemDescription String
    (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
    fileSystemName String
    The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kmsKeyId String
    (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
    lifecycleDetails String
    A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lnet String
    Type of network used by clients to mount the file system. Example: tcp
    maintenanceWindows List<Property Map>
    The preferred day and time to perform maintenance.
    majorVersion String
    Major version of Lustre running in the Lustre file system. Example: 2.15
    managementServiceAddress String
    The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
    nsgIds List<String>
    (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
    performanceTier String
    The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.
    rootSquashConfiguration Property Map
    (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
    state String
    The current state of the Lustre file system.
    subnetId String

    The OCID of the subnet the Lustre file system is in.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeBillingCycleEnd String
    The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
    timeCreated String
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated String
    The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z

    Supporting Types

    FileStorageLustreFileSystemMaintenanceWindow, FileStorageLustreFileSystemMaintenanceWindowArgs

    DayOfWeek string
    Day of the week when the maintainence window starts.
    TimeStart string
    The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00
    DayOfWeek string
    Day of the week when the maintainence window starts.
    TimeStart string
    The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00
    dayOfWeek String
    Day of the week when the maintainence window starts.
    timeStart String
    The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00
    dayOfWeek string
    Day of the week when the maintainence window starts.
    timeStart string
    The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00
    day_of_week str
    Day of the week when the maintainence window starts.
    time_start str
    The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00
    dayOfWeek String
    Day of the week when the maintainence window starts.
    timeStart String
    The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00

    FileStorageLustreFileSystemRootSquashConfiguration, FileStorageLustreFileSystemRootSquashConfigurationArgs

    ClientExceptions List<string>
    (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
    IdentitySquash string
    (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUid and squashGid. If ROOT, only the root user and group (UID/GID 0) are remapped; if NONE, no remapping is done. If unspecified, defaults to NONE.
    SquashGid string
    (Updatable) The GID value to remap to when squashing a client GID. See identitySquash for more details. If unspecified, defaults to 65534.
    SquashUid string
    (Updatable) The UID value to remap to when squashing a client UID. See identitySquash for more details. If unspecified, defaults to 65534.
    ClientExceptions []string
    (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
    IdentitySquash string
    (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUid and squashGid. If ROOT, only the root user and group (UID/GID 0) are remapped; if NONE, no remapping is done. If unspecified, defaults to NONE.
    SquashGid string
    (Updatable) The GID value to remap to when squashing a client GID. See identitySquash for more details. If unspecified, defaults to 65534.
    SquashUid string
    (Updatable) The UID value to remap to when squashing a client UID. See identitySquash for more details. If unspecified, defaults to 65534.
    clientExceptions List<String>
    (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
    identitySquash String
    (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUid and squashGid. If ROOT, only the root user and group (UID/GID 0) are remapped; if NONE, no remapping is done. If unspecified, defaults to NONE.
    squashGid String
    (Updatable) The GID value to remap to when squashing a client GID. See identitySquash for more details. If unspecified, defaults to 65534.
    squashUid String
    (Updatable) The UID value to remap to when squashing a client UID. See identitySquash for more details. If unspecified, defaults to 65534.
    clientExceptions string[]
    (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
    identitySquash string
    (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUid and squashGid. If ROOT, only the root user and group (UID/GID 0) are remapped; if NONE, no remapping is done. If unspecified, defaults to NONE.
    squashGid string
    (Updatable) The GID value to remap to when squashing a client GID. See identitySquash for more details. If unspecified, defaults to 65534.
    squashUid string
    (Updatable) The UID value to remap to when squashing a client UID. See identitySquash for more details. If unspecified, defaults to 65534.
    client_exceptions Sequence[str]
    (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
    identity_squash str
    (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUid and squashGid. If ROOT, only the root user and group (UID/GID 0) are remapped; if NONE, no remapping is done. If unspecified, defaults to NONE.
    squash_gid str
    (Updatable) The GID value to remap to when squashing a client GID. See identitySquash for more details. If unspecified, defaults to 65534.
    squash_uid str
    (Updatable) The UID value to remap to when squashing a client UID. See identitySquash for more details. If unspecified, defaults to 65534.
    clientExceptions List<String>
    (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
    identitySquash String
    (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUid and squashGid. If ROOT, only the root user and group (UID/GID 0) are remapped; if NONE, no remapping is done. If unspecified, defaults to NONE.
    squashGid String
    (Updatable) The GID value to remap to when squashing a client GID. See identitySquash for more details. If unspecified, defaults to 65534.
    squashUid String
    (Updatable) The UID value to remap to when squashing a client UID. See identitySquash for more details. If unspecified, defaults to 65534.

    Import

    LustreFileSystems can be imported using the id, e.g.

    $ pulumi import oci:Lustre/fileStorageLustreFileSystem:FileStorageLustreFileSystem test_lustre_file_system "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi