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={
"dayOfWeek": "string",
"timeOfDayInUtc": "string",
},
resource_group_name="string",
sku_name="string",
storage_capacity_in_tb=0,
subnet_id="string",
zones=["string"],
encryption_key={
"keyUrl": "string",
"sourceVaultId": "string",
},
hsm_setting={
"containerId": "string",
"loggingContainerId": "string",
"importPrefix": "string",
},
identity={
"identityIds": ["string"],
"type": "string",
},
location="string",
name="string",
tags={
"string": "string",
})
const fileSystemResource = new azure.managedlustre.FileSystem("fileSystemResource", {
maintenanceWindow: {
dayOfWeek: "string",
timeOfDayInUtc: "string",
},
resourceGroupName: "string",
skuName: "string",
storageCapacityInTb: 0,
subnetId: "string",
zones: ["string"],
encryptionKey: {
keyUrl: "string",
sourceVaultId: "string",
},
hsmSetting: {
containerId: "string",
loggingContainerId: "string",
importPrefix: "string",
},
identity: {
identityIds: ["string"],
type: "string",
},
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:managedlustre:FileSystem
properties:
encryptionKey:
keyUrl: string
sourceVaultId: string
hsmSetting:
containerId: string
importPrefix: string
loggingContainerId: string
identity:
identityIds:
- string
type: string
location: string
maintenanceWindow:
dayOfWeek: string
timeOfDayInUtc: string
name: string
resourceGroupName: string
skuName: string
storageCapacityInTb: 0
subnetId: string
tags:
string: string
zones:
- string
FileSystem Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FileSystem resource accepts the following input properties:
- Maintenance
Window FileSystem Maintenance Window - A
maintenance_window
block as defined below. - Resource
Group 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.
- Sku
Name string - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-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_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - Subnet
Id 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.
- Encryption
Key FileSystem Encryption Key An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- Hsm
Setting FileSystem Hsm Setting - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - Identity
File
System Identity - An
identity
block as defined below. Changing this forces a new resource to be created. - Location string
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- Dictionary<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_window
block as defined below. - Resource
Group 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.
- Sku
Name string - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-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_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - Subnet
Id 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.
- Encryption
Key FileSystem Encryption Key Args An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- Hsm
Setting FileSystem Hsm Setting Args - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - Identity
File
System Identity Args - An
identity
block as defined below. Changing this forces a new resource to be created. - Location string
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenance
Window FileSystem Maintenance Window - A
maintenance_window
block as defined below. - resource
Group 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.
- sku
Name String - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-Durable-Premium-500
. Changing this forces a new resource to be created. - storage
Capacity IntegerIn Tb - The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which
sku_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet
Id 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.
- encryption
Key FileSystem Encryption Key An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm
Setting FileSystem Hsm Setting - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity
File
System Identity - An
identity
block as defined below. Changing this forces a new resource to be created. - location String
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenance
Window FileSystem Maintenance Window - A
maintenance_window
block as defined below. - resource
Group 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.
- sku
Name string - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-Durable-Premium-500
. Changing this forces a new resource to be created. - storage
Capacity numberIn Tb - The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which
sku_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet
Id 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.
- encryption
Key FileSystem Encryption Key An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm
Setting FileSystem Hsm Setting - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity
File
System Identity - An
identity
block as defined below. Changing this forces a new resource to be created. - location string
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- name string
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- {[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_window
block 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-250
andAMLFS-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_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet_
id str - The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
- zones Sequence[str]
- A list of availability zones for the Azure Managed Lustre File System. Changing this forces a new resource to be created.
- encryption_
key FileSystem Encryption Key Args An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm_
setting FileSystem Hsm Setting Args - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity
File
System Identity Args - An
identity
block as defined below. Changing this forces a new resource to be created. - location str
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- name str
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Azure Managed Lustre File System.
- maintenance
Window Property Map - A
maintenance_window
block as defined below. - resource
Group 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.
- sku
Name String - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-Durable-Premium-500
. Changing this forces a new resource to be created. - storage
Capacity NumberIn Tb - The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which
sku_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet
Id 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.
- encryption
Key Property Map An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm
Setting Property Map - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity Property Map
- An
identity
block as defined below. Changing this forces a new resource to be created. - location String
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- 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.
- Mgs
Address string - IP Address of Managed Lustre File System Services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mgs
Address string - IP Address of Managed Lustre File System Services.
- id String
- The provider-assigned unique ID for this managed resource.
- mgs
Address String - IP Address of Managed Lustre File System Services.
- id string
- The provider-assigned unique ID for this managed resource.
- mgs
Address 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.
- mgs
Address String - IP Address of Managed Lustre File System Services.
Look up Existing FileSystem Resource
Get an existing FileSystem resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FileSystemState, opts?: CustomResourceOptions): FileSystem
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
encryption_key: Optional[FileSystemEncryptionKeyArgs] = None,
hsm_setting: Optional[FileSystemHsmSettingArgs] = None,
identity: Optional[FileSystemIdentityArgs] = None,
location: Optional[str] = None,
maintenance_window: Optional[FileSystemMaintenanceWindowArgs] = None,
mgs_address: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
storage_capacity_in_tb: Optional[int] = None,
subnet_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
zones: Optional[Sequence[str]] = None) -> FileSystem
func GetFileSystem(ctx *Context, name string, id IDInput, state *FileSystemState, opts ...ResourceOption) (*FileSystem, error)
public static FileSystem Get(string name, Input<string> id, FileSystemState? state, CustomResourceOptions? opts = null)
public static FileSystem get(String name, Output<String> id, FileSystemState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Encryption
Key FileSystem Encryption Key An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- Hsm
Setting FileSystem Hsm Setting - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - Identity
File
System Identity - An
identity
block as defined below. Changing this forces a new resource to be created. - Location string
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- Maintenance
Window FileSystem Maintenance Window - A
maintenance_window
block as defined below. - Mgs
Address 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.
- Resource
Group 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.
- Sku
Name string - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-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_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - Subnet
Id 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.
- Encryption
Key FileSystem Encryption Key Args An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- Hsm
Setting FileSystem Hsm Setting Args - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - Identity
File
System Identity Args - An
identity
block as defined below. Changing this forces a new resource to be created. - Location string
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- Maintenance
Window FileSystem Maintenance Window Args - A
maintenance_window
block as defined below. - Mgs
Address 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.
- Resource
Group 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.
- Sku
Name string - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-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_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - Subnet
Id 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.
- encryption
Key FileSystem Encryption Key An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm
Setting FileSystem Hsm Setting - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity
File
System Identity - An
identity
block as defined below. Changing this forces a new resource to be created. - location String
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- maintenance
Window FileSystem Maintenance Window - A
maintenance_window
block as defined below. - mgs
Address 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.
- resource
Group 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.
- sku
Name String - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-Durable-Premium-500
. Changing this forces a new resource to be created. - storage
Capacity IntegerIn Tb - The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which
sku_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet
Id 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.
- encryption
Key FileSystem Encryption Key An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm
Setting FileSystem Hsm Setting - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity
File
System Identity - An
identity
block as defined below. Changing this forces a new resource to be created. - location string
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- maintenance
Window FileSystem Maintenance Window - A
maintenance_window
block as defined below. - mgs
Address 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.
- resource
Group 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.
- sku
Name string - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-Durable-Premium-500
. Changing this forces a new resource to be created. - storage
Capacity numberIn Tb - The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which
sku_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet
Id 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_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm_
setting FileSystem Hsm Setting Args - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity
File
System Identity Args - An
identity
block as defined below. Changing this forces a new resource to be created. - location str
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- maintenance_
window FileSystem Maintenance Window Args - A
maintenance_window
block as defined below. - mgs_
address str - IP Address of Managed Lustre File System Services.
- name str
- The name which should be used for this Azure Managed Lustre File System. Changing this forces a new resource to be created.
- resource_
group_ 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-250
andAMLFS-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_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet_
id str - The resource ID of the Subnet that is used for managing the Azure Managed Lustre file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the Virtual Network's address space. Changing this forces a new resource to be created.
- 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.
- encryption
Key Property Map An
encryption_key
block as defined below.NOTE: Removing
encryption_key
forces a new resource to be created.- hsm
Setting Property Map - A
hsm_setting
block as defined below. Changing this forces a new resource to be created. - identity Property Map
- An
identity
block as defined below. Changing this forces a new resource to be created. - location String
- The Azure Region where the Azure Managed Lustre File System should exist. Changing this forces a new resource to be created.
- maintenance
Window Property Map - A
maintenance_window
block as defined below. - mgs
Address 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.
- resource
Group 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.
- sku
Name String - The SKU name for the Azure Managed Lustre File System. Possible values are
AMLFS-Durable-Premium-40
,AMLFS-Durable-Premium-125
,AMLFS-Durable-Premium-250
andAMLFS-Durable-Premium-500
. Changing this forces a new resource to be created. - storage
Capacity NumberIn Tb - The size of the Azure Managed Lustre File System in TiB. The valid values for this field are dependant on which
sku_name
has been defined in the configuration file. For more information on the valid values for this field please see the product documentation. Changing this forces a new resource to be created. - subnet
Id 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
- Key
Url string - The URL to the Key Vault Key used as the Encryption Key. This can be found as
id
on theazure.keyvault.Key
resource. - Source
Vault stringId - The ID of the source Key Vault. This can be found as
id
on theazure.keyvault.KeyVault
resource.
- Key
Url string - The URL to the Key Vault Key used as the Encryption Key. This can be found as
id
on theazure.keyvault.Key
resource. - Source
Vault stringId - The ID of the source Key Vault. This can be found as
id
on theazure.keyvault.KeyVault
resource.
- key
Url String - The URL to the Key Vault Key used as the Encryption Key. This can be found as
id
on theazure.keyvault.Key
resource. - source
Vault StringId - The ID of the source Key Vault. This can be found as
id
on theazure.keyvault.KeyVault
resource.
- key
Url string - The URL to the Key Vault Key used as the Encryption Key. This can be found as
id
on theazure.keyvault.Key
resource. - source
Vault stringId - The ID of the source Key Vault. This can be found as
id
on theazure.keyvault.KeyVault
resource.
- key_
url str - The URL to the Key Vault Key used as the Encryption Key. This can be found as
id
on theazure.keyvault.Key
resource. - source_
vault_ strid - The ID of the source Key Vault. This can be found as
id
on theazure.keyvault.KeyVault
resource.
- key
Url String - The URL to the Key Vault Key used as the Encryption Key. This can be found as
id
on theazure.keyvault.Key
resource. - source
Vault StringId - The ID of the source Key Vault. This can be found as
id
on theazure.keyvault.KeyVault
resource.
FileSystemHsmSetting, FileSystemHsmSettingArgs
- Container
Id 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.
- Logging
Container 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.
- Import
Prefix string The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.
NOTE: The roles
Contributor
andStorage Blob Data Contributor
must be added to the Service PrincipalHPC Cache Resource Provider
for the Storage Account. See official docs for more information.
- Container
Id 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.
- Logging
Container 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.
- Import
Prefix string The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.
NOTE: The roles
Contributor
andStorage Blob Data Contributor
must be added to the Service PrincipalHPC Cache Resource Provider
for the Storage Account. See official docs for more information.
- container
Id 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.
- logging
Container 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.
- import
Prefix String The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.
NOTE: The roles
Contributor
andStorage Blob Data Contributor
must be added to the Service PrincipalHPC Cache Resource Provider
for the Storage Account. See official docs for more information.
- container
Id 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.
- logging
Container 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.
- import
Prefix string The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.
NOTE: The roles
Contributor
andStorage Blob Data Contributor
must be added to the Service PrincipalHPC Cache Resource Provider
for the Storage Account. See official docs for more information.
- container_
id str - The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
- logging_
container_ 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
Contributor
andStorage Blob Data Contributor
must be added to the Service PrincipalHPC Cache Resource Provider
for the Storage Account. See official docs for more information.
- container
Id 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.
- logging
Container 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.
- import
Prefix String The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.
NOTE: The roles
Contributor
andStorage Blob Data Contributor
must be added to the Service PrincipalHPC Cache Resource Provider
for the Storage Account. See official docs for more information.
FileSystemIdentity, FileSystemIdentityArgs
- Identity
Ids 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.
- Identity
Ids []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 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.
- identity
Ids 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.
- identity
Ids 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
- Day
Of stringWeek - The day of the week on which the maintenance window will occur. Possible values are
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
andSaturday
. - Time
Of stringDay In Utc - The time of day (in UTC) to start the maintenance window.
- Day
Of stringWeek - The day of the week on which the maintenance window will occur. Possible values are
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
andSaturday
. - Time
Of stringDay In Utc - The time of day (in UTC) to start the maintenance window.
- day
Of StringWeek - The day of the week on which the maintenance window will occur. Possible values are
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
andSaturday
. - time
Of StringDay In Utc - The time of day (in UTC) to start the maintenance window.
- day
Of stringWeek - The day of the week on which the maintenance window will occur. Possible values are
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
andSaturday
. - time
Of 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
,Friday
andSaturday
. - time_
of_ strday_ in_ utc - The time of day (in UTC) to start the maintenance window.
- day
Of StringWeek - The day of the week on which the maintenance window will occur. Possible values are
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
andSaturday
. - time
Of 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
azurerm
Terraform Provider.