alicloud.nas.MountTarget
Explore with Pulumi AI
Provides a NAS Mount Target resource. For information about NAS Mount Target and how to use it, see Manage NAS Mount Targets.
NOTE: Available since v1.34.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const default = alicloud.nas.getZones({
fileSystemType: "extreme",
});
const countSize = _default.then(_default => _default.zones).length;
const zoneId = Promise.all([_default, countSize]).then(([_default, countSize]) => _default.zones[countSize - 1].zoneId);
const example = new alicloud.vpc.Network("example", {
vpcName: "terraform-example",
cidrBlock: "172.17.3.0/24",
});
const exampleSwitch = new alicloud.vpc.Switch("example", {
vswitchName: example.vpcName,
cidrBlock: example.cidrBlock,
vpcId: example.id,
zoneId: zoneId,
});
const exampleFileSystem = new alicloud.nas.FileSystem("example", {
protocolType: "NFS",
storageType: "advance",
fileSystemType: "extreme",
capacity: 100,
zoneId: zoneId,
});
const exampleAccessGroup = new alicloud.nas.AccessGroup("example", {
accessGroupName: "access_group_xxx",
accessGroupType: "Vpc",
description: "test_access_group",
fileSystemType: "extreme",
});
const exampleMountTarget = new alicloud.nas.MountTarget("example", {
fileSystemId: exampleFileSystem.id,
accessGroupName: exampleAccessGroup.accessGroupName,
vswitchId: exampleSwitch.id,
vpcId: example.id,
networkType: exampleAccessGroup.accessGroupType,
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.nas.get_zones(file_system_type="extreme")
count_size = len(default.zones)
zone_id = default.zones[count_size - 1].zone_id
example = alicloud.vpc.Network("example",
vpc_name="terraform-example",
cidr_block="172.17.3.0/24")
example_switch = alicloud.vpc.Switch("example",
vswitch_name=example.vpc_name,
cidr_block=example.cidr_block,
vpc_id=example.id,
zone_id=zone_id)
example_file_system = alicloud.nas.FileSystem("example",
protocol_type="NFS",
storage_type="advance",
file_system_type="extreme",
capacity=100,
zone_id=zone_id)
example_access_group = alicloud.nas.AccessGroup("example",
access_group_name="access_group_xxx",
access_group_type="Vpc",
description="test_access_group",
file_system_type="extreme")
example_mount_target = alicloud.nas.MountTarget("example",
file_system_id=example_file_system.id,
access_group_name=example_access_group.access_group_name,
vswitch_id=example_switch.id,
vpc_id=example.id,
network_type=example_access_group.access_group_type)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/nas"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := nas.GetZones(ctx, &nas.GetZonesArgs{
FileSystemType: pulumi.StringRef("extreme"),
}, nil)
if err != nil {
return err
}
countSize := len(_default.Zones)
zoneId := _default.Zones[countSize-1].ZoneId
example, err := vpc.NewNetwork(ctx, "example", &vpc.NetworkArgs{
VpcName: pulumi.String("terraform-example"),
CidrBlock: pulumi.String("172.17.3.0/24"),
})
if err != nil {
return err
}
exampleSwitch, err := vpc.NewSwitch(ctx, "example", &vpc.SwitchArgs{
VswitchName: example.VpcName,
CidrBlock: example.CidrBlock,
VpcId: example.ID(),
ZoneId: pulumi.String(zoneId),
})
if err != nil {
return err
}
exampleFileSystem, err := nas.NewFileSystem(ctx, "example", &nas.FileSystemArgs{
ProtocolType: pulumi.String("NFS"),
StorageType: pulumi.String("advance"),
FileSystemType: pulumi.String("extreme"),
Capacity: pulumi.Int(100),
ZoneId: pulumi.String(zoneId),
})
if err != nil {
return err
}
exampleAccessGroup, err := nas.NewAccessGroup(ctx, "example", &nas.AccessGroupArgs{
AccessGroupName: pulumi.String("access_group_xxx"),
AccessGroupType: pulumi.String("Vpc"),
Description: pulumi.String("test_access_group"),
FileSystemType: pulumi.String("extreme"),
})
if err != nil {
return err
}
_, err = nas.NewMountTarget(ctx, "example", &nas.MountTargetArgs{
FileSystemId: exampleFileSystem.ID(),
AccessGroupName: exampleAccessGroup.AccessGroupName,
VswitchId: exampleSwitch.ID(),
VpcId: example.ID(),
NetworkType: exampleAccessGroup.AccessGroupType,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.Nas.GetZones.Invoke(new()
{
FileSystemType = "extreme",
});
var countSize = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones)).Length;
var zoneId = Output.Tuple(@default, countSize).Apply(values =>
{
var @default = values.Item1;
var countSize = values.Item2;
return @default.Apply(getZonesResult => getZonesResult.Zones)[countSize - 1].ZoneId;
});
var example = new AliCloud.Vpc.Network("example", new()
{
VpcName = "terraform-example",
CidrBlock = "172.17.3.0/24",
});
var exampleSwitch = new AliCloud.Vpc.Switch("example", new()
{
VswitchName = example.VpcName,
CidrBlock = example.CidrBlock,
VpcId = example.Id,
ZoneId = zoneId,
});
var exampleFileSystem = new AliCloud.Nas.FileSystem("example", new()
{
ProtocolType = "NFS",
StorageType = "advance",
FileSystemType = "extreme",
Capacity = 100,
ZoneId = zoneId,
});
var exampleAccessGroup = new AliCloud.Nas.AccessGroup("example", new()
{
AccessGroupName = "access_group_xxx",
AccessGroupType = "Vpc",
Description = "test_access_group",
FileSystemType = "extreme",
});
var exampleMountTarget = new AliCloud.Nas.MountTarget("example", new()
{
FileSystemId = exampleFileSystem.Id,
AccessGroupName = exampleAccessGroup.AccessGroupName,
VswitchId = exampleSwitch.Id,
VpcId = example.Id,
NetworkType = exampleAccessGroup.AccessGroupType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.nas.NasFunctions;
import com.pulumi.alicloud.nas.inputs.GetZonesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.nas.FileSystem;
import com.pulumi.alicloud.nas.FileSystemArgs;
import com.pulumi.alicloud.nas.AccessGroup;
import com.pulumi.alicloud.nas.AccessGroupArgs;
import com.pulumi.alicloud.nas.MountTarget;
import com.pulumi.alicloud.nas.MountTargetArgs;
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) {
final var default = NasFunctions.getZones(GetZonesArgs.builder()
.fileSystemType("extreme")
.build());
final var countSize = default_.zones().length();
final var zoneId = default_.zones()[countSize - 1].zoneId();
var example = new Network("example", NetworkArgs.builder()
.vpcName("terraform-example")
.cidrBlock("172.17.3.0/24")
.build());
var exampleSwitch = new Switch("exampleSwitch", SwitchArgs.builder()
.vswitchName(example.vpcName())
.cidrBlock(example.cidrBlock())
.vpcId(example.id())
.zoneId(zoneId)
.build());
var exampleFileSystem = new FileSystem("exampleFileSystem", FileSystemArgs.builder()
.protocolType("NFS")
.storageType("advance")
.fileSystemType("extreme")
.capacity("100")
.zoneId(zoneId)
.build());
var exampleAccessGroup = new AccessGroup("exampleAccessGroup", AccessGroupArgs.builder()
.accessGroupName("access_group_xxx")
.accessGroupType("Vpc")
.description("test_access_group")
.fileSystemType("extreme")
.build());
var exampleMountTarget = new MountTarget("exampleMountTarget", MountTargetArgs.builder()
.fileSystemId(exampleFileSystem.id())
.accessGroupName(exampleAccessGroup.accessGroupName())
.vswitchId(exampleSwitch.id())
.vpcId(example.id())
.networkType(exampleAccessGroup.accessGroupType())
.build());
}
}
Coming soon!
Create MountTarget Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MountTarget(name: string, args: MountTargetArgs, opts?: CustomResourceOptions);
@overload
def MountTarget(resource_name: str,
args: MountTargetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MountTarget(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
access_group_name: Optional[str] = None,
network_type: Optional[str] = None,
security_group_id: Optional[str] = None,
status: Optional[str] = None,
vpc_id: Optional[str] = None,
vswitch_id: Optional[str] = None)
func NewMountTarget(ctx *Context, name string, args MountTargetArgs, opts ...ResourceOption) (*MountTarget, error)
public MountTarget(string name, MountTargetArgs args, CustomResourceOptions? opts = null)
public MountTarget(String name, MountTargetArgs args)
public MountTarget(String name, MountTargetArgs args, CustomResourceOptions options)
type: alicloud:nas:MountTarget
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 MountTargetArgs
- 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 MountTargetArgs
- 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 MountTargetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MountTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MountTargetArgs
- 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 mountTargetResource = new AliCloud.Nas.MountTarget("mountTargetResource", new()
{
FileSystemId = "string",
AccessGroupName = "string",
NetworkType = "string",
SecurityGroupId = "string",
Status = "string",
VpcId = "string",
VswitchId = "string",
});
example, err := nas.NewMountTarget(ctx, "mountTargetResource", &nas.MountTargetArgs{
FileSystemId: pulumi.String("string"),
AccessGroupName: pulumi.String("string"),
NetworkType: pulumi.String("string"),
SecurityGroupId: pulumi.String("string"),
Status: pulumi.String("string"),
VpcId: pulumi.String("string"),
VswitchId: pulumi.String("string"),
})
var mountTargetResource = new MountTarget("mountTargetResource", MountTargetArgs.builder()
.fileSystemId("string")
.accessGroupName("string")
.networkType("string")
.securityGroupId("string")
.status("string")
.vpcId("string")
.vswitchId("string")
.build());
mount_target_resource = alicloud.nas.MountTarget("mountTargetResource",
file_system_id="string",
access_group_name="string",
network_type="string",
security_group_id="string",
status="string",
vpc_id="string",
vswitch_id="string")
const mountTargetResource = new alicloud.nas.MountTarget("mountTargetResource", {
fileSystemId: "string",
accessGroupName: "string",
networkType: "string",
securityGroupId: "string",
status: "string",
vpcId: "string",
vswitchId: "string",
});
type: alicloud:nas:MountTarget
properties:
accessGroupName: string
fileSystemId: string
networkType: string
securityGroupId: string
status: string
vpcId: string
vswitchId: string
MountTarget 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 MountTarget resource accepts the following input properties:
- File
System stringId - The ID of the file system.
- Access
Group stringName - The name of the permission group that applies to the mount target.
- Network
Type string - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - Security
Group stringId - The ID of security group.
- Status string
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - Vpc
Id string - The ID of VPC.
- Vswitch
Id string - The ID of the VSwitch in the VPC where the mount target resides.
- File
System stringId - The ID of the file system.
- Access
Group stringName - The name of the permission group that applies to the mount target.
- Network
Type string - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - Security
Group stringId - The ID of security group.
- Status string
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - Vpc
Id string - The ID of VPC.
- Vswitch
Id string - The ID of the VSwitch in the VPC where the mount target resides.
- file
System StringId - The ID of the file system.
- access
Group StringName - The name of the permission group that applies to the mount target.
- network
Type String - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security
Group StringId - The ID of security group.
- status String
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc
Id String - The ID of VPC.
- vswitch
Id String - The ID of the VSwitch in the VPC where the mount target resides.
- file
System stringId - The ID of the file system.
- access
Group stringName - The name of the permission group that applies to the mount target.
- network
Type string - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security
Group stringId - The ID of security group.
- status string
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc
Id string - The ID of VPC.
- vswitch
Id string - The ID of the VSwitch in the VPC where the mount target resides.
- file_
system_ strid - The ID of the file system.
- access_
group_ strname - The name of the permission group that applies to the mount target.
- network_
type str - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security_
group_ strid - The ID of security group.
- status str
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc_
id str - The ID of VPC.
- vswitch_
id str - The ID of the VSwitch in the VPC where the mount target resides.
- file
System StringId - The ID of the file system.
- access
Group StringName - The name of the permission group that applies to the mount target.
- network
Type String - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security
Group StringId - The ID of security group.
- status String
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc
Id String - The ID of VPC.
- vswitch
Id String - The ID of the VSwitch in the VPC where the mount target resides.
Outputs
All input properties are implicitly available as output properties. Additionally, the MountTarget resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Mount
Target stringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mount
Target stringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- id String
- The provider-assigned unique ID for this managed resource.
- mount
Target StringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- id string
- The provider-assigned unique ID for this managed resource.
- mount
Target stringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- id str
- The provider-assigned unique ID for this managed resource.
- mount_
target_ strdomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- id String
- The provider-assigned unique ID for this managed resource.
- mount
Target StringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
Look up Existing MountTarget Resource
Get an existing MountTarget 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?: MountTargetState, opts?: CustomResourceOptions): MountTarget
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_group_name: Optional[str] = None,
file_system_id: Optional[str] = None,
mount_target_domain: Optional[str] = None,
network_type: Optional[str] = None,
security_group_id: Optional[str] = None,
status: Optional[str] = None,
vpc_id: Optional[str] = None,
vswitch_id: Optional[str] = None) -> MountTarget
func GetMountTarget(ctx *Context, name string, id IDInput, state *MountTargetState, opts ...ResourceOption) (*MountTarget, error)
public static MountTarget Get(string name, Input<string> id, MountTargetState? state, CustomResourceOptions? opts = null)
public static MountTarget get(String name, Output<String> id, MountTargetState 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.
- Access
Group stringName - The name of the permission group that applies to the mount target.
- File
System stringId - The ID of the file system.
- Mount
Target stringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- Network
Type string - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - Security
Group stringId - The ID of security group.
- Status string
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - Vpc
Id string - The ID of VPC.
- Vswitch
Id string - The ID of the VSwitch in the VPC where the mount target resides.
- Access
Group stringName - The name of the permission group that applies to the mount target.
- File
System stringId - The ID of the file system.
- Mount
Target stringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- Network
Type string - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - Security
Group stringId - The ID of security group.
- Status string
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - Vpc
Id string - The ID of VPC.
- Vswitch
Id string - The ID of the VSwitch in the VPC where the mount target resides.
- access
Group StringName - The name of the permission group that applies to the mount target.
- file
System StringId - The ID of the file system.
- mount
Target StringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- network
Type String - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security
Group StringId - The ID of security group.
- status String
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc
Id String - The ID of VPC.
- vswitch
Id String - The ID of the VSwitch in the VPC where the mount target resides.
- access
Group stringName - The name of the permission group that applies to the mount target.
- file
System stringId - The ID of the file system.
- mount
Target stringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- network
Type string - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security
Group stringId - The ID of security group.
- status string
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc
Id string - The ID of VPC.
- vswitch
Id string - The ID of the VSwitch in the VPC where the mount target resides.
- access_
group_ strname - The name of the permission group that applies to the mount target.
- file_
system_ strid - The ID of the file system.
- mount_
target_ strdomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- network_
type str - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security_
group_ strid - The ID of security group.
- status str
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc_
id str - The ID of VPC.
- vswitch_
id str - The ID of the VSwitch in the VPC where the mount target resides.
- access
Group StringName - The name of the permission group that applies to the mount target.
- file
System StringId - The ID of the file system.
- mount
Target StringDomain - The IPv4 domain name of the mount target. NOTE: Available since v1.161.0.
- network
Type String - mount target network type. Valid values:
VPC
. The classic network's mount targets are not supported. - security
Group StringId - The ID of security group.
- status String
- Whether the MountTarget is active. The status of the mount target. Valid values:
Active
andInactive
, Default value isActive
. Before you mount a file system, make sure that the mount target is in the Active state. - vpc
Id String - The ID of VPC.
- vswitch
Id String - The ID of the VSwitch in the VPC where the mount target resides.
Import
NAS MountTarget can be imported using the id, e.g.
$ pulumi import alicloud:nas/mountTarget:MountTarget foo 192094b415:192094b415-luw38.cn-beijing.nas.aliyuncs.com
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.