published on Monday, Jun 15, 2026 by Volcengine
published on Monday, Jun 15, 2026 by Volcengine
Instance connection endpoint public address.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const endpointPublicAddressDemo = new volcenginecc.rdsmysql.EndpointPublicAddress("EndpointPublicAddressDemo", {
instanceId: "mysql-7623a9xxxxxx",
endpointId: "mysql-7623a9xxxxx-custom-xxxx",
eipId: "eip-2f8vbiyym6txckjzxxxxx",
domainPrefix: "ccapi-terraform",
port: "23306",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
endpoint_public_address_demo = volcenginecc.rdsmysql.EndpointPublicAddress("EndpointPublicAddressDemo",
instance_id="mysql-7623a9xxxxxx",
endpoint_id="mysql-7623a9xxxxx-custom-xxxx",
eip_id="eip-2f8vbiyym6txckjzxxxxx",
domain_prefix="ccapi-terraform",
port="23306")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/rdsmysql"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rdsmysql.NewEndpointPublicAddress(ctx, "EndpointPublicAddressDemo", &rdsmysql.EndpointPublicAddressArgs{
InstanceId: pulumi.String("mysql-7623a9xxxxxx"),
EndpointId: pulumi.String("mysql-7623a9xxxxx-custom-xxxx"),
EipId: pulumi.String("eip-2f8vbiyym6txckjzxxxxx"),
DomainPrefix: pulumi.String("ccapi-terraform"),
Port: pulumi.String("23306"),
})
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 endpointPublicAddressDemo = new Volcenginecc.Rdsmysql.EndpointPublicAddress("EndpointPublicAddressDemo", new()
{
InstanceId = "mysql-7623a9xxxxxx",
EndpointId = "mysql-7623a9xxxxx-custom-xxxx",
EipId = "eip-2f8vbiyym6txckjzxxxxx",
DomainPrefix = "ccapi-terraform",
Port = "23306",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.rdsmysql.EndpointPublicAddress;
import com.volcengine.volcenginecc.rdsmysql.EndpointPublicAddressArgs;
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 endpointPublicAddressDemo = new EndpointPublicAddress("endpointPublicAddressDemo", EndpointPublicAddressArgs.builder()
.instanceId("mysql-7623a9xxxxxx")
.endpointId("mysql-7623a9xxxxx-custom-xxxx")
.eipId("eip-2f8vbiyym6txckjzxxxxx")
.domainPrefix("ccapi-terraform")
.port("23306")
.build());
}
}
resources:
endpointPublicAddressDemo:
type: volcenginecc:rdsmysql:EndpointPublicAddress
name: EndpointPublicAddressDemo
properties:
instanceId: mysql-7623a9xxxxxx
endpointId: mysql-7623a9xxxxx-custom-xxxx
eipId: eip-2f8vbiyym6txckjzxxxxx
domainPrefix: ccapi-terraform
port: 23306
Example coming soon!
Create EndpointPublicAddress Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EndpointPublicAddress(name: string, args: EndpointPublicAddressArgs, opts?: CustomResourceOptions);@overload
def EndpointPublicAddress(resource_name: str,
args: EndpointPublicAddressArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EndpointPublicAddress(resource_name: str,
opts: Optional[ResourceOptions] = None,
eip_id: Optional[str] = None,
endpoint_id: Optional[str] = None,
instance_id: Optional[str] = None,
domain_prefix: Optional[str] = None,
port: Optional[str] = None)func NewEndpointPublicAddress(ctx *Context, name string, args EndpointPublicAddressArgs, opts ...ResourceOption) (*EndpointPublicAddress, error)public EndpointPublicAddress(string name, EndpointPublicAddressArgs args, CustomResourceOptions? opts = null)
public EndpointPublicAddress(String name, EndpointPublicAddressArgs args)
public EndpointPublicAddress(String name, EndpointPublicAddressArgs args, CustomResourceOptions options)
type: volcenginecc:rdsmysql:EndpointPublicAddress
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_rdsmysql_endpointpublicaddress" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args EndpointPublicAddressArgs
- 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 EndpointPublicAddressArgs
- 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 EndpointPublicAddressArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointPublicAddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointPublicAddressArgs
- 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 endpointPublicAddressResource = new Volcenginecc.Rdsmysql.EndpointPublicAddress("endpointPublicAddressResource", new()
{
EipId = "string",
EndpointId = "string",
InstanceId = "string",
DomainPrefix = "string",
Port = "string",
});
example, err := rdsmysql.NewEndpointPublicAddress(ctx, "endpointPublicAddressResource", &rdsmysql.EndpointPublicAddressArgs{
EipId: pulumi.String("string"),
EndpointId: pulumi.String("string"),
InstanceId: pulumi.String("string"),
DomainPrefix: pulumi.String("string"),
Port: pulumi.String("string"),
})
resource "volcenginecc_rdsmysql_endpointpublicaddress" "endpointPublicAddressResource" {
eip_id = "string"
endpoint_id = "string"
instance_id = "string"
domain_prefix = "string"
port = "string"
}
var endpointPublicAddressResource = new com.volcengine.volcenginecc.rdsmysql.EndpointPublicAddress("endpointPublicAddressResource", com.volcengine.volcenginecc.rdsmysql.EndpointPublicAddressArgs.builder()
.eipId("string")
.endpointId("string")
.instanceId("string")
.domainPrefix("string")
.port("string")
.build());
endpoint_public_address_resource = volcenginecc.rdsmysql.EndpointPublicAddress("endpointPublicAddressResource",
eip_id="string",
endpoint_id="string",
instance_id="string",
domain_prefix="string",
port="string")
const endpointPublicAddressResource = new volcenginecc.rdsmysql.EndpointPublicAddress("endpointPublicAddressResource", {
eipId: "string",
endpointId: "string",
instanceId: "string",
domainPrefix: "string",
port: "string",
});
type: volcenginecc:rdsmysql:EndpointPublicAddress
properties:
domainPrefix: string
eipId: string
endpointId: string
instanceId: string
port: string
EndpointPublicAddress 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 EndpointPublicAddress resource accepts the following input properties:
- Eip
Id string - EIP ID, valid only for Public addresses.
- Endpoint
Id string - Instance connection endpoint ID.
- Instance
Id string - Instance ID.
- Domain
Prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- Port string
- Port.
- Eip
Id string - EIP ID, valid only for Public addresses.
- Endpoint
Id string - Instance connection endpoint ID.
- Instance
Id string - Instance ID.
- Domain
Prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- Port string
- Port.
- eip_
id string - EIP ID, valid only for Public addresses.
- endpoint_
id string - Instance connection endpoint ID.
- instance_
id string - Instance ID.
- domain_
prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- port string
- Port.
- eip
Id String - EIP ID, valid only for Public addresses.
- endpoint
Id String - Instance connection endpoint ID.
- instance
Id String - Instance ID.
- domain
Prefix String - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- port String
- Port.
- eip
Id string - EIP ID, valid only for Public addresses.
- endpoint
Id string - Instance connection endpoint ID.
- instance
Id string - Instance ID.
- domain
Prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- port string
- Port.
- eip_
id str - EIP ID, valid only for Public addresses.
- endpoint_
id str - Instance connection endpoint ID.
- instance_
id str - Instance ID.
- domain_
prefix str - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- port str
- Port.
- eip
Id String - EIP ID, valid only for Public addresses.
- endpoint
Id String - Instance connection endpoint ID.
- instance
Id String - Instance ID.
- domain
Prefix String - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- port String
- Port.
Outputs
All input properties are implicitly available as output properties. Additionally, the EndpointPublicAddress resource produces the following output properties:
- Dns
Visibility bool - false: private network resolution (default) - true: private and public network resolution
- Domain string
- Connection domain name.
- Eip
Locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- Id string
- The provider-assigned unique ID for this managed resource.
- Internet
Protocol string - IP protocol version. Value: IPv4.
- Ip
Address string - IP address.
- Network
Type string - Network address type. Valid values: Private: Private address. Public: Public address.
- Subnet
Id string - Subnet ID, valid only for Private addresses.
- Dns
Visibility bool - false: private network resolution (default) - true: private and public network resolution
- Domain string
- Connection domain name.
- Eip
Locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- Id string
- The provider-assigned unique ID for this managed resource.
- Internet
Protocol string - IP protocol version. Value: IPv4.
- Ip
Address string - IP address.
- Network
Type string - Network address type. Valid values: Private: Private address. Public: Public address.
- Subnet
Id string - Subnet ID, valid only for Private addresses.
- dns_
visibility bool - false: private network resolution (default) - true: private and public network resolution
- domain string
- Connection domain name.
- eip_
locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- id string
- The provider-assigned unique ID for this managed resource.
- internet_
protocol string - IP protocol version. Value: IPv4.
- ip_
address string - IP address.
- network_
type string - Network address type. Valid values: Private: Private address. Public: Public address.
- subnet_
id string - Subnet ID, valid only for Private addresses.
- dns
Visibility Boolean - false: private network resolution (default) - true: private and public network resolution
- domain String
- Connection domain name.
- eip
Locked Boolean - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- id String
- The provider-assigned unique ID for this managed resource.
- internet
Protocol String - IP protocol version. Value: IPv4.
- ip
Address String - IP address.
- network
Type String - Network address type. Valid values: Private: Private address. Public: Public address.
- subnet
Id String - Subnet ID, valid only for Private addresses.
- dns
Visibility boolean - false: private network resolution (default) - true: private and public network resolution
- domain string
- Connection domain name.
- eip
Locked boolean - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- id string
- The provider-assigned unique ID for this managed resource.
- internet
Protocol string - IP protocol version. Value: IPv4.
- ip
Address string - IP address.
- network
Type string - Network address type. Valid values: Private: Private address. Public: Public address.
- subnet
Id string - Subnet ID, valid only for Private addresses.
- dns_
visibility bool - false: private network resolution (default) - true: private and public network resolution
- domain str
- Connection domain name.
- eip_
locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- id str
- The provider-assigned unique ID for this managed resource.
- internet_
protocol str - IP protocol version. Value: IPv4.
- ip_
address str - IP address.
- network_
type str - Network address type. Valid values: Private: Private address. Public: Public address.
- subnet_
id str - Subnet ID, valid only for Private addresses.
- dns
Visibility Boolean - false: private network resolution (default) - true: private and public network resolution
- domain String
- Connection domain name.
- eip
Locked Boolean - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- id String
- The provider-assigned unique ID for this managed resource.
- internet
Protocol String - IP protocol version. Value: IPv4.
- ip
Address String - IP address.
- network
Type String - Network address type. Valid values: Private: Private address. Public: Public address.
- subnet
Id String - Subnet ID, valid only for Private addresses.
Look up Existing EndpointPublicAddress Resource
Get an existing EndpointPublicAddress 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?: EndpointPublicAddressState, opts?: CustomResourceOptions): EndpointPublicAddress@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dns_visibility: Optional[bool] = None,
domain: Optional[str] = None,
domain_prefix: Optional[str] = None,
eip_id: Optional[str] = None,
eip_locked: Optional[bool] = None,
endpoint_id: Optional[str] = None,
instance_id: Optional[str] = None,
internet_protocol: Optional[str] = None,
ip_address: Optional[str] = None,
network_type: Optional[str] = None,
port: Optional[str] = None,
subnet_id: Optional[str] = None) -> EndpointPublicAddressfunc GetEndpointPublicAddress(ctx *Context, name string, id IDInput, state *EndpointPublicAddressState, opts ...ResourceOption) (*EndpointPublicAddress, error)public static EndpointPublicAddress Get(string name, Input<string> id, EndpointPublicAddressState? state, CustomResourceOptions? opts = null)public static EndpointPublicAddress get(String name, Output<String> id, EndpointPublicAddressState state, CustomResourceOptions options)resources: _: type: volcenginecc:rdsmysql:EndpointPublicAddress get: id: ${id}import {
to = volcenginecc_rdsmysql_endpointpublicaddress.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.
- Dns
Visibility bool - false: private network resolution (default) - true: private and public network resolution
- Domain string
- Connection domain name.
- Domain
Prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- Eip
Id string - EIP ID, valid only for Public addresses.
- Eip
Locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- Endpoint
Id string - Instance connection endpoint ID.
- Instance
Id string - Instance ID.
- Internet
Protocol string - IP protocol version. Value: IPv4.
- Ip
Address string - IP address.
- Network
Type string - Network address type. Valid values: Private: Private address. Public: Public address.
- Port string
- Port.
- Subnet
Id string - Subnet ID, valid only for Private addresses.
- Dns
Visibility bool - false: private network resolution (default) - true: private and public network resolution
- Domain string
- Connection domain name.
- Domain
Prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- Eip
Id string - EIP ID, valid only for Public addresses.
- Eip
Locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- Endpoint
Id string - Instance connection endpoint ID.
- Instance
Id string - Instance ID.
- Internet
Protocol string - IP protocol version. Value: IPv4.
- Ip
Address string - IP address.
- Network
Type string - Network address type. Valid values: Private: Private address. Public: Public address.
- Port string
- Port.
- Subnet
Id string - Subnet ID, valid only for Private addresses.
- dns_
visibility bool - false: private network resolution (default) - true: private and public network resolution
- domain string
- Connection domain name.
- domain_
prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- eip_
id string - EIP ID, valid only for Public addresses.
- eip_
locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- endpoint_
id string - Instance connection endpoint ID.
- instance_
id string - Instance ID.
- internet_
protocol string - IP protocol version. Value: IPv4.
- ip_
address string - IP address.
- network_
type string - Network address type. Valid values: Private: Private address. Public: Public address.
- port string
- Port.
- subnet_
id string - Subnet ID, valid only for Private addresses.
- dns
Visibility Boolean - false: private network resolution (default) - true: private and public network resolution
- domain String
- Connection domain name.
- domain
Prefix String - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- eip
Id String - EIP ID, valid only for Public addresses.
- eip
Locked Boolean - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- endpoint
Id String - Instance connection endpoint ID.
- instance
Id String - Instance ID.
- internet
Protocol String - IP protocol version. Value: IPv4.
- ip
Address String - IP address.
- network
Type String - Network address type. Valid values: Private: Private address. Public: Public address.
- port String
- Port.
- subnet
Id String - Subnet ID, valid only for Private addresses.
- dns
Visibility boolean - false: private network resolution (default) - true: private and public network resolution
- domain string
- Connection domain name.
- domain
Prefix string - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- eip
Id string - EIP ID, valid only for Public addresses.
- eip
Locked boolean - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- endpoint
Id string - Instance connection endpoint ID.
- instance
Id string - Instance ID.
- internet
Protocol string - IP protocol version. Value: IPv4.
- ip
Address string - IP address.
- network
Type string - Network address type. Valid values: Private: Private address. Public: Public address.
- port string
- Port.
- subnet
Id string - Subnet ID, valid only for Private addresses.
- dns_
visibility bool - false: private network resolution (default) - true: private and public network resolution
- domain str
- Connection domain name.
- domain_
prefix str - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- eip_
id str - EIP ID, valid only for Public addresses.
- eip_
locked bool - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- endpoint_
id str - Instance connection endpoint ID.
- instance_
id str - Instance ID.
- internet_
protocol str - IP protocol version. Value: IPv4.
- ip_
address str - IP address.
- network_
type str - Network address type. Valid values: Private: Private address. Public: Public address.
- port str
- Port.
- subnet_
id str - Subnet ID, valid only for Private addresses.
- dns
Visibility Boolean - false: private network resolution (default) - true: private and public network resolution
- domain String
- Connection domain name.
- domain
Prefix String - Connection address prefix. The prefix must meet the following rules: start with a lowercase letter, end with a lowercase letter or digit, and must include at least two types among lowercase letters, digits, and hyphens (-). The prefix must be at least 8 characters long, and the total connection address length (prefix + suffix) must not exceed 63 characters.
- eip
Id String - EIP ID, valid only for Public addresses.
- eip
Locked Boolean - Whether the EIP used by the connection endpoint is suspended due to overdue payment. Values: - true: Yes - false: No
- endpoint
Id String - Instance connection endpoint ID.
- instance
Id String - Instance ID.
- internet
Protocol String - IP protocol version. Value: IPv4.
- ip
Address String - IP address.
- network
Type String - Network address type. Valid values: Private: Private address. Public: Public address.
- port String
- Port.
- subnet
Id String - Subnet ID, valid only for Private addresses.
Import
$ pulumi import volcenginecc:rdsmysql/endpointPublicAddress:EndpointPublicAddress example "instance_id|endpoint_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, Jun 15, 2026 by Volcengine