published on Monday, Aug 24, 2026 by Volcengine
published on Monday, Aug 24, 2026 by Volcengine
EFS file storage mount point, used to mount the file system on the client within the specified VPC and subnet
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const primaryEfsMountpointCase1 = new volcenginecc.efs.MountPoint("primary_efs_mountpoint_case_1", {
fileSystemId: "vol-1234567890abcdef",
mountPointName: "test-dx-full",
permissionGroupId: "pgroup-default",
vpcId: "vpc-1234567890abcdef",
subnetId: "subnet-1234567890abcdef",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
primary_efs_mountpoint_case1 = volcenginecc.efs.MountPoint("primary_efs_mountpoint_case_1",
file_system_id="vol-1234567890abcdef",
mount_point_name="test-dx-full",
permission_group_id="pgroup-default",
vpc_id="vpc-1234567890abcdef",
subnet_id="subnet-1234567890abcdef")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/efs"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := efs.NewMountPoint(ctx, "primary_efs_mountpoint_case_1", &efs.MountPointArgs{
FileSystemId: pulumi.String("vol-1234567890abcdef"),
MountPointName: pulumi.String("test-dx-full"),
PermissionGroupId: pulumi.String("pgroup-default"),
VpcId: pulumi.String("vpc-1234567890abcdef"),
SubnetId: pulumi.String("subnet-1234567890abcdef"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var primaryEfsMountpointCase1 = new Volcenginecc.Efs.MountPoint("primary_efs_mountpoint_case_1", new()
{
FileSystemId = "vol-1234567890abcdef",
MountPointName = "test-dx-full",
PermissionGroupId = "pgroup-default",
VpcId = "vpc-1234567890abcdef",
SubnetId = "subnet-1234567890abcdef",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.efs.MountPoint;
import com.volcengine.volcenginecc.efs.MountPointArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 primaryEfsMountpointCase1 = new MountPoint("primaryEfsMountpointCase1", MountPointArgs.builder()
.fileSystemId("vol-1234567890abcdef")
.mountPointName("test-dx-full")
.permissionGroupId("pgroup-default")
.vpcId("vpc-1234567890abcdef")
.subnetId("subnet-1234567890abcdef")
.build());
}
}
resources:
primaryEfsMountpointCase1:
type: volcenginecc:efs:MountPoint
name: primary_efs_mountpoint_case_1
properties:
fileSystemId: vol-1234567890abcdef
mountPointName: test-dx-full
permissionGroupId: pgroup-default
vpcId: vpc-1234567890abcdef
subnetId: subnet-1234567890abcdef
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_efs_mountpoint" "primary_efs_mountpoint_case_1" {
file_system_id = "vol-1234567890abcdef"
mount_point_name = "test-dx-full"
permission_group_id = "pgroup-default"
vpc_id = "vpc-1234567890abcdef"
subnet_id = "subnet-1234567890abcdef"
}
Create MountPoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MountPoint(name: string, args: MountPointArgs, opts?: CustomResourceOptions);@overload
def MountPoint(resource_name: str,
args: MountPointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MountPoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
mount_point_name: Optional[str] = None,
permission_group_id: Optional[str] = None,
vpc_id: Optional[str] = None,
subnet_id: Optional[str] = None)func NewMountPoint(ctx *Context, name string, args MountPointArgs, opts ...ResourceOption) (*MountPoint, error)public MountPoint(string name, MountPointArgs args, CustomResourceOptions? opts = null)
public MountPoint(String name, MountPointArgs args)
public MountPoint(String name, MountPointArgs args, CustomResourceOptions options)
type: volcenginecc:efs:MountPoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_efs_mount_point" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args MountPointArgs
- 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 MountPointArgs
- 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 MountPointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MountPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MountPointArgs
- 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 mountPointResource = new Volcenginecc.Efs.MountPoint("mountPointResource", new()
{
FileSystemId = "string",
MountPointName = "string",
PermissionGroupId = "string",
VpcId = "string",
SubnetId = "string",
});
example, err := efs.NewMountPoint(ctx, "mountPointResource", &efs.MountPointArgs{
FileSystemId: pulumi.String("string"),
MountPointName: pulumi.String("string"),
PermissionGroupId: pulumi.String("string"),
VpcId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
})
resource "volcenginecc_efs_mount_point" "mountPointResource" {
lifecycle {
create_before_destroy = true
}
file_system_id = "string"
mount_point_name = "string"
permission_group_id = "string"
vpc_id = "string"
subnet_id = "string"
}
var mountPointResource = new com.volcengine.volcenginecc.efs.MountPoint("mountPointResource", com.volcengine.volcenginecc.efs.MountPointArgs.builder()
.fileSystemId("string")
.mountPointName("string")
.permissionGroupId("string")
.vpcId("string")
.subnetId("string")
.build());
mount_point_resource = volcenginecc.efs.MountPoint("mountPointResource",
file_system_id="string",
mount_point_name="string",
permission_group_id="string",
vpc_id="string",
subnet_id="string")
const mountPointResource = new volcenginecc.efs.MountPoint("mountPointResource", {
fileSystemId: "string",
mountPointName: "string",
permissionGroupId: "string",
vpcId: "string",
subnetId: "string",
});
type: volcenginecc:efs:MountPoint
properties:
fileSystemId: string
mountPointName: string
permissionGroupId: string
subnetId: string
vpcId: string
MountPoint 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 MountPoint resource accepts the following input properties:
- File
System stringId - ID of the associated file system
- Mount
Point stringName - Name of the mount point
- Permission
Group stringId - ID of the permission group bound to the mount point
- Vpc
Id string - ID of the VPC associated with the mount point
- Subnet
Id string - ID of the subnet associated with the mount point
- File
System stringId - ID of the associated file system
- Mount
Point stringName - Name of the mount point
- Permission
Group stringId - ID of the permission group bound to the mount point
- Vpc
Id string - ID of the VPC associated with the mount point
- Subnet
Id string - ID of the subnet associated with the mount point
- file_
system_ stringid - ID of the associated file system
- mount_
point_ stringname - Name of the mount point
- permission_
group_ stringid - ID of the permission group bound to the mount point
- vpc_
id string - ID of the VPC associated with the mount point
- subnet_
id string - ID of the subnet associated with the mount point
- file
System StringId - ID of the associated file system
- mount
Point StringName - Name of the mount point
- permission
Group StringId - ID of the permission group bound to the mount point
- vpc
Id String - ID of the VPC associated with the mount point
- subnet
Id String - ID of the subnet associated with the mount point
- file
System stringId - ID of the associated file system
- mount
Point stringName - Name of the mount point
- permission
Group stringId - ID of the permission group bound to the mount point
- vpc
Id string - ID of the VPC associated with the mount point
- subnet
Id string - ID of the subnet associated with the mount point
- file_
system_ strid - ID of the associated file system
- mount_
point_ strname - Name of the mount point
- permission_
group_ strid - ID of the permission group bound to the mount point
- vpc_
id str - ID of the VPC associated with the mount point
- subnet_
id str - ID of the subnet associated with the mount point
- file
System StringId - ID of the associated file system
- mount
Point StringName - Name of the mount point
- permission
Group StringId - ID of the permission group bound to the mount point
- vpc
Id String - ID of the VPC associated with the mount point
- subnet
Id String - ID of the subnet associated with the mount point
Outputs
All input properties are implicitly available as output properties. Additionally, the MountPoint resource produces the following output properties:
- Create
Time string - Creation time of the mount point
- Domain string
- Domain name of the mount point
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- IP address of the mount point
- Mount
Point stringId - ID of the mount point
- Permission
Group stringName - Name of the permission group bound to the mount point
- Status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- Subnet
Name string - Name of the subnet associated with the mount point
- Update
Time string - Last update time of the mount point
- Vpc
Name string - Name of the VPC associated with the mount point
- Zone
Id string - ID of the availability zone associated with the mount point
- Zone
Name string - Name of the availability zone associated with the mount point
- Create
Time string - Creation time of the mount point
- Domain string
- Domain name of the mount point
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- IP address of the mount point
- Mount
Point stringId - ID of the mount point
- Permission
Group stringName - Name of the permission group bound to the mount point
- Status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- Subnet
Name string - Name of the subnet associated with the mount point
- Update
Time string - Last update time of the mount point
- Vpc
Name string - Name of the VPC associated with the mount point
- Zone
Id string - ID of the availability zone associated with the mount point
- Zone
Name string - Name of the availability zone associated with the mount point
- create_
time string - Creation time of the mount point
- domain string
- Domain name of the mount point
- id string
- The provider-assigned unique ID for this managed resource.
- ip string
- IP address of the mount point
- mount_
point_ stringid - ID of the mount point
- permission_
group_ stringname - Name of the permission group bound to the mount point
- status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet_
name string - Name of the subnet associated with the mount point
- update_
time string - Last update time of the mount point
- vpc_
name string - Name of the VPC associated with the mount point
- zone_
id string - ID of the availability zone associated with the mount point
- zone_
name string - Name of the availability zone associated with the mount point
- create
Time String - Creation time of the mount point
- domain String
- Domain name of the mount point
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- IP address of the mount point
- mount
Point StringId - ID of the mount point
- permission
Group StringName - Name of the permission group bound to the mount point
- status String
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet
Name String - Name of the subnet associated with the mount point
- update
Time String - Last update time of the mount point
- vpc
Name String - Name of the VPC associated with the mount point
- zone
Id String - ID of the availability zone associated with the mount point
- zone
Name String - Name of the availability zone associated with the mount point
- create
Time string - Creation time of the mount point
- domain string
- Domain name of the mount point
- id string
- The provider-assigned unique ID for this managed resource.
- ip string
- IP address of the mount point
- mount
Point stringId - ID of the mount point
- permission
Group stringName - Name of the permission group bound to the mount point
- status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet
Name string - Name of the subnet associated with the mount point
- update
Time string - Last update time of the mount point
- vpc
Name string - Name of the VPC associated with the mount point
- zone
Id string - ID of the availability zone associated with the mount point
- zone
Name string - Name of the availability zone associated with the mount point
- create_
time str - Creation time of the mount point
- domain str
- Domain name of the mount point
- id str
- The provider-assigned unique ID for this managed resource.
- ip str
- IP address of the mount point
- mount_
point_ strid - ID of the mount point
- permission_
group_ strname - Name of the permission group bound to the mount point
- status str
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet_
name str - Name of the subnet associated with the mount point
- update_
time str - Last update time of the mount point
- vpc_
name str - Name of the VPC associated with the mount point
- zone_
id str - ID of the availability zone associated with the mount point
- zone_
name str - Name of the availability zone associated with the mount point
- create
Time String - Creation time of the mount point
- domain String
- Domain name of the mount point
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- IP address of the mount point
- mount
Point StringId - ID of the mount point
- permission
Group StringName - Name of the permission group bound to the mount point
- status String
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet
Name String - Name of the subnet associated with the mount point
- update
Time String - Last update time of the mount point
- vpc
Name String - Name of the VPC associated with the mount point
- zone
Id String - ID of the availability zone associated with the mount point
- zone
Name String - Name of the availability zone associated with the mount point
Look up Existing MountPoint Resource
Get an existing MountPoint 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?: MountPointState, opts?: CustomResourceOptions): MountPoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
domain: Optional[str] = None,
file_system_id: Optional[str] = None,
ip: Optional[str] = None,
mount_point_id: Optional[str] = None,
mount_point_name: Optional[str] = None,
permission_group_id: Optional[str] = None,
permission_group_name: Optional[str] = None,
status: Optional[str] = None,
subnet_id: Optional[str] = None,
subnet_name: Optional[str] = None,
update_time: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_name: Optional[str] = None,
zone_id: Optional[str] = None,
zone_name: Optional[str] = None) -> MountPointfunc GetMountPoint(ctx *Context, name string, id IDInput, state *MountPointState, opts ...ResourceOption) (*MountPoint, error)public static MountPoint Get(string name, Input<string> id, MountPointState? state, CustomResourceOptions? opts = null)public static MountPoint get(String name, Output<String> id, MountPointState state, CustomResourceOptions options)resources: _: type: volcenginecc:efs:MountPoint get: id: ${id}import {
to = volcenginecc_efs_mount_point.example
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.
- Create
Time string - Creation time of the mount point
- Domain string
- Domain name of the mount point
- File
System stringId - ID of the associated file system
- Ip string
- IP address of the mount point
- Mount
Point stringId - ID of the mount point
- Mount
Point stringName - Name of the mount point
- Permission
Group stringId - ID of the permission group bound to the mount point
- Permission
Group stringName - Name of the permission group bound to the mount point
- Status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- Subnet
Id string - ID of the subnet associated with the mount point
- Subnet
Name string - Name of the subnet associated with the mount point
- Update
Time string - Last update time of the mount point
- Vpc
Id string - ID of the VPC associated with the mount point
- Vpc
Name string - Name of the VPC associated with the mount point
- Zone
Id string - ID of the availability zone associated with the mount point
- Zone
Name string - Name of the availability zone associated with the mount point
- Create
Time string - Creation time of the mount point
- Domain string
- Domain name of the mount point
- File
System stringId - ID of the associated file system
- Ip string
- IP address of the mount point
- Mount
Point stringId - ID of the mount point
- Mount
Point stringName - Name of the mount point
- Permission
Group stringId - ID of the permission group bound to the mount point
- Permission
Group stringName - Name of the permission group bound to the mount point
- Status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- Subnet
Id string - ID of the subnet associated with the mount point
- Subnet
Name string - Name of the subnet associated with the mount point
- Update
Time string - Last update time of the mount point
- Vpc
Id string - ID of the VPC associated with the mount point
- Vpc
Name string - Name of the VPC associated with the mount point
- Zone
Id string - ID of the availability zone associated with the mount point
- Zone
Name string - Name of the availability zone associated with the mount point
- create_
time string - Creation time of the mount point
- domain string
- Domain name of the mount point
- file_
system_ stringid - ID of the associated file system
- ip string
- IP address of the mount point
- mount_
point_ stringid - ID of the mount point
- mount_
point_ stringname - Name of the mount point
- permission_
group_ stringid - ID of the permission group bound to the mount point
- permission_
group_ stringname - Name of the permission group bound to the mount point
- status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet_
id string - ID of the subnet associated with the mount point
- subnet_
name string - Name of the subnet associated with the mount point
- update_
time string - Last update time of the mount point
- vpc_
id string - ID of the VPC associated with the mount point
- vpc_
name string - Name of the VPC associated with the mount point
- zone_
id string - ID of the availability zone associated with the mount point
- zone_
name string - Name of the availability zone associated with the mount point
- create
Time String - Creation time of the mount point
- domain String
- Domain name of the mount point
- file
System StringId - ID of the associated file system
- ip String
- IP address of the mount point
- mount
Point StringId - ID of the mount point
- mount
Point StringName - Name of the mount point
- permission
Group StringId - ID of the permission group bound to the mount point
- permission
Group StringName - Name of the permission group bound to the mount point
- status String
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet
Id String - ID of the subnet associated with the mount point
- subnet
Name String - Name of the subnet associated with the mount point
- update
Time String - Last update time of the mount point
- vpc
Id String - ID of the VPC associated with the mount point
- vpc
Name String - Name of the VPC associated with the mount point
- zone
Id String - ID of the availability zone associated with the mount point
- zone
Name String - Name of the availability zone associated with the mount point
- create
Time string - Creation time of the mount point
- domain string
- Domain name of the mount point
- file
System stringId - ID of the associated file system
- ip string
- IP address of the mount point
- mount
Point stringId - ID of the mount point
- mount
Point stringName - Name of the mount point
- permission
Group stringId - ID of the permission group bound to the mount point
- permission
Group stringName - Name of the permission group bound to the mount point
- status string
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet
Id string - ID of the subnet associated with the mount point
- subnet
Name string - Name of the subnet associated with the mount point
- update
Time string - Last update time of the mount point
- vpc
Id string - ID of the VPC associated with the mount point
- vpc
Name string - Name of the VPC associated with the mount point
- zone
Id string - ID of the availability zone associated with the mount point
- zone
Name string - Name of the availability zone associated with the mount point
- create_
time str - Creation time of the mount point
- domain str
- Domain name of the mount point
- file_
system_ strid - ID of the associated file system
- ip str
- IP address of the mount point
- mount_
point_ strid - ID of the mount point
- mount_
point_ strname - Name of the mount point
- permission_
group_ strid - ID of the permission group bound to the mount point
- permission_
group_ strname - Name of the permission group bound to the mount point
- status str
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet_
id str - ID of the subnet associated with the mount point
- subnet_
name str - Name of the subnet associated with the mount point
- update_
time str - Last update time of the mount point
- vpc_
id str - ID of the VPC associated with the mount point
- vpc_
name str - Name of the VPC associated with the mount point
- zone_
id str - ID of the availability zone associated with the mount point
- zone_
name str - Name of the availability zone associated with the mount point
- create
Time String - Creation time of the mount point
- domain String
- Domain name of the mount point
- file
System StringId - ID of the associated file system
- ip String
- IP address of the mount point
- mount
Point StringId - ID of the mount point
- mount
Point StringName - Name of the mount point
- permission
Group StringId - ID of the permission group bound to the mount point
- permission
Group StringName - Name of the permission group bound to the mount point
- status String
- Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
- subnet
Id String - ID of the subnet associated with the mount point
- subnet
Name String - Name of the subnet associated with the mount point
- update
Time String - Last update time of the mount point
- vpc
Id String - ID of the VPC associated with the mount point
- vpc
Name String - Name of the VPC associated with the mount point
- zone
Id String - ID of the availability zone associated with the mount point
- zone
Name String - Name of the availability zone associated with the mount point
Import
$ pulumi import volcenginecc:efs/mountPoint:MountPoint example "file_system_id|mount_point_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Monday, Aug 24, 2026 by Volcengine