published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Provides a resource to manage a TencentDB for PostgreSQL database within a DB instance.
Note: The
database_ownermust be an existing account of the PostgreSQL instance. You can use resourcetencentcloud.PostgresqlAccountto create the account before creating the database.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const config = new pulumi.Config();
const availabilityZone = config.get("availabilityZone") || "ap-guangzhou-3";
// create vpc
const vpc = new tencentcloud.Vpc("vpc", {
name: "vpc",
cidrBlock: "10.0.0.0/16",
});
// create vpc subnet
const subnet = new tencentcloud.Subnet("subnet", {
availabilityZone: availabilityZone,
name: "subnet",
vpcId: vpc.vpcId,
cidrBlock: "10.0.20.0/28",
isMulticast: false,
});
// create postgresql instance
const example = new tencentcloud.PostgresqlInstance("example", {
name: "example",
availabilityZone: availabilityZone,
chargeType: "POSTPAID_BY_HOUR",
vpcId: vpc.vpcId,
subnetId: subnet.subnetId,
dbMajorVersion: "10",
engineVersion: "10.23",
rootUser: "root123",
rootPassword: "Root123$",
charset: "UTF8",
projectId: 0,
cpu: 1,
memory: 2,
storage: 10,
tags: {
test: "tf",
},
});
// create postgresql account
const examplePostgresqlAccount = new tencentcloud.PostgresqlAccount("example", {
dbInstanceId: example.postgresqlInstanceId,
userName: "tf_example",
password: "Password@123",
type: "normal",
remark: "remark",
lockStatus: false,
});
// create postgresql database
const examplePostgresqlDatabase = new tencentcloud.PostgresqlDatabase("example", {
dbInstanceId: example.postgresqlInstanceId,
databaseName: "test_db",
databaseOwner: examplePostgresqlAccount.userName,
encoding: "UTF8",
collate: "C",
ctype: "C",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
config = pulumi.Config()
availability_zone = config.get("availabilityZone")
if availability_zone is None:
availability_zone = "ap-guangzhou-3"
# create vpc
vpc = tencentcloud.Vpc("vpc",
name="vpc",
cidr_block="10.0.0.0/16")
# create vpc subnet
subnet = tencentcloud.Subnet("subnet",
availability_zone=availability_zone,
name="subnet",
vpc_id=vpc.vpc_id,
cidr_block="10.0.20.0/28",
is_multicast=False)
# create postgresql instance
example = tencentcloud.PostgresqlInstance("example",
name="example",
availability_zone=availability_zone,
charge_type="POSTPAID_BY_HOUR",
vpc_id=vpc.vpc_id,
subnet_id=subnet.subnet_id,
db_major_version="10",
engine_version="10.23",
root_user="root123",
root_password="Root123$",
charset="UTF8",
project_id=0,
cpu=1,
memory=2,
storage=10,
tags={
"test": "tf",
})
# create postgresql account
example_postgresql_account = tencentcloud.PostgresqlAccount("example",
db_instance_id=example.postgresql_instance_id,
user_name="tf_example",
password="Password@123",
type="normal",
remark="remark",
lock_status=False)
# create postgresql database
example_postgresql_database = tencentcloud.PostgresqlDatabase("example",
db_instance_id=example.postgresql_instance_id,
database_name="test_db",
database_owner=example_postgresql_account.user_name,
encoding="UTF8",
collate="C",
ctype="C")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
availabilityZone := "ap-guangzhou-3"
if param := cfg.Get("availabilityZone"); param != "" {
availabilityZone = param
}
// create vpc
vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
Name: pulumi.String("vpc"),
CidrBlock: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
// create vpc subnet
subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
AvailabilityZone: pulumi.String(availabilityZone),
Name: pulumi.String("subnet"),
VpcId: vpc.VpcId,
CidrBlock: pulumi.String("10.0.20.0/28"),
IsMulticast: pulumi.Bool(false),
})
if err != nil {
return err
}
// create postgresql instance
example, err := tencentcloud.NewPostgresqlInstance(ctx, "example", &tencentcloud.PostgresqlInstanceArgs{
Name: pulumi.String("example"),
AvailabilityZone: pulumi.String(availabilityZone),
ChargeType: pulumi.String("POSTPAID_BY_HOUR"),
VpcId: vpc.VpcId,
SubnetId: subnet.SubnetId,
DbMajorVersion: pulumi.String("10"),
EngineVersion: pulumi.String("10.23"),
RootUser: pulumi.String("root123"),
RootPassword: pulumi.String("Root123$"),
Charset: pulumi.String("UTF8"),
ProjectId: pulumi.Float64(0),
Cpu: pulumi.Float64(1),
Memory: pulumi.Float64(2),
Storage: pulumi.Float64(10),
Tags: pulumi.StringMap{
"test": pulumi.String("tf"),
},
})
if err != nil {
return err
}
// create postgresql account
examplePostgresqlAccount, err := tencentcloud.NewPostgresqlAccount(ctx, "example", &tencentcloud.PostgresqlAccountArgs{
DbInstanceId: example.PostgresqlInstanceId,
UserName: pulumi.String("tf_example"),
Password: pulumi.String("Password@123"),
Type: pulumi.String("normal"),
Remark: pulumi.String("remark"),
LockStatus: pulumi.Bool(false),
})
if err != nil {
return err
}
// create postgresql database
_, err = tencentcloud.NewPostgresqlDatabase(ctx, "example", &tencentcloud.PostgresqlDatabaseArgs{
DbInstanceId: example.PostgresqlInstanceId,
DatabaseName: pulumi.String("test_db"),
DatabaseOwner: examplePostgresqlAccount.UserName,
Encoding: pulumi.String("UTF8"),
Collate: pulumi.String("C"),
Ctype: pulumi.String("C"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var availabilityZone = config.Get("availabilityZone") ?? "ap-guangzhou-3";
// create vpc
var vpc = new Tencentcloud.Vpc("vpc", new()
{
Name = "vpc",
CidrBlock = "10.0.0.0/16",
});
// create vpc subnet
var subnet = new Tencentcloud.Subnet("subnet", new()
{
AvailabilityZone = availabilityZone,
Name = "subnet",
VpcId = vpc.VpcId,
CidrBlock = "10.0.20.0/28",
IsMulticast = false,
});
// create postgresql instance
var example = new Tencentcloud.PostgresqlInstance("example", new()
{
Name = "example",
AvailabilityZone = availabilityZone,
ChargeType = "POSTPAID_BY_HOUR",
VpcId = vpc.VpcId,
SubnetId = subnet.SubnetId,
DbMajorVersion = "10",
EngineVersion = "10.23",
RootUser = "root123",
RootPassword = "Root123$",
Charset = "UTF8",
ProjectId = 0,
Cpu = 1,
Memory = 2,
Storage = 10,
Tags =
{
{ "test", "tf" },
},
});
// create postgresql account
var examplePostgresqlAccount = new Tencentcloud.PostgresqlAccount("example", new()
{
DbInstanceId = example.PostgresqlInstanceId,
UserName = "tf_example",
Password = "Password@123",
Type = "normal",
Remark = "remark",
LockStatus = false,
});
// create postgresql database
var examplePostgresqlDatabase = new Tencentcloud.PostgresqlDatabase("example", new()
{
DbInstanceId = example.PostgresqlInstanceId,
DatabaseName = "test_db",
DatabaseOwner = examplePostgresqlAccount.UserName,
Encoding = "UTF8",
Collate = "C",
Ctype = "C",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.Vpc;
import com.pulumi.tencentcloud.VpcArgs;
import com.pulumi.tencentcloud.Subnet;
import com.pulumi.tencentcloud.SubnetArgs;
import com.pulumi.tencentcloud.PostgresqlInstance;
import com.pulumi.tencentcloud.PostgresqlInstanceArgs;
import com.pulumi.tencentcloud.PostgresqlAccount;
import com.pulumi.tencentcloud.PostgresqlAccountArgs;
import com.pulumi.tencentcloud.PostgresqlDatabase;
import com.pulumi.tencentcloud.PostgresqlDatabaseArgs;
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 config = ctx.config();
final var availabilityZone = config.get("availabilityZone").orElse("ap-guangzhou-3");
// create vpc
var vpc = new Vpc("vpc", VpcArgs.builder()
.name("vpc")
.cidrBlock("10.0.0.0/16")
.build());
// create vpc subnet
var subnet = new Subnet("subnet", SubnetArgs.builder()
.availabilityZone(availabilityZone)
.name("subnet")
.vpcId(vpc.vpcId())
.cidrBlock("10.0.20.0/28")
.isMulticast(false)
.build());
// create postgresql instance
var example = new PostgresqlInstance("example", PostgresqlInstanceArgs.builder()
.name("example")
.availabilityZone(availabilityZone)
.chargeType("POSTPAID_BY_HOUR")
.vpcId(vpc.vpcId())
.subnetId(subnet.subnetId())
.dbMajorVersion("10")
.engineVersion("10.23")
.rootUser("root123")
.rootPassword("Root123$")
.charset("UTF8")
.projectId(0.0)
.cpu(1.0)
.memory(2.0)
.storage(10.0)
.tags(Map.of("test", "tf"))
.build());
// create postgresql account
var examplePostgresqlAccount = new PostgresqlAccount("examplePostgresqlAccount", PostgresqlAccountArgs.builder()
.dbInstanceId(example.postgresqlInstanceId())
.userName("tf_example")
.password("Password@123")
.type("normal")
.remark("remark")
.lockStatus(false)
.build());
// create postgresql database
var examplePostgresqlDatabase = new PostgresqlDatabase("examplePostgresqlDatabase", PostgresqlDatabaseArgs.builder()
.dbInstanceId(example.postgresqlInstanceId())
.databaseName("test_db")
.databaseOwner(examplePostgresqlAccount.userName())
.encoding("UTF8")
.collate("C")
.ctype("C")
.build());
}
}
configuration:
availabilityZone:
type: string
default: ap-guangzhou-3
resources:
# create vpc
vpc:
type: tencentcloud:Vpc
properties:
name: vpc
cidrBlock: 10.0.0.0/16
# create vpc subnet
subnet:
type: tencentcloud:Subnet
properties:
availabilityZone: ${availabilityZone}
name: subnet
vpcId: ${vpc.vpcId}
cidrBlock: 10.0.20.0/28
isMulticast: false
# create postgresql instance
example:
type: tencentcloud:PostgresqlInstance
properties:
name: example
availabilityZone: ${availabilityZone}
chargeType: POSTPAID_BY_HOUR
vpcId: ${vpc.vpcId}
subnetId: ${subnet.subnetId}
dbMajorVersion: '10'
engineVersion: '10.23'
rootUser: root123
rootPassword: Root123$
charset: UTF8
projectId: 0
cpu: 1
memory: 2
storage: 10
tags:
test: tf
# create postgresql account
examplePostgresqlAccount:
type: tencentcloud:PostgresqlAccount
name: example
properties:
dbInstanceId: ${example.postgresqlInstanceId}
userName: tf_example
password: Password@123
type: normal
remark: remark
lockStatus: false
# create postgresql database
examplePostgresqlDatabase:
type: tencentcloud:PostgresqlDatabase
name: example
properties:
dbInstanceId: ${example.postgresqlInstanceId}
databaseName: test_db
databaseOwner: ${examplePostgresqlAccount.userName}
encoding: UTF8
collate: C
ctype: C
Example coming soon!
Create PostgresqlDatabase Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PostgresqlDatabase(name: string, args: PostgresqlDatabaseArgs, opts?: CustomResourceOptions);@overload
def PostgresqlDatabase(resource_name: str,
args: PostgresqlDatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PostgresqlDatabase(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
database_owner: Optional[str] = None,
db_instance_id: Optional[str] = None,
collate: Optional[str] = None,
ctype: Optional[str] = None,
encoding: Optional[str] = None,
postgresql_database_id: Optional[str] = None)func NewPostgresqlDatabase(ctx *Context, name string, args PostgresqlDatabaseArgs, opts ...ResourceOption) (*PostgresqlDatabase, error)public PostgresqlDatabase(string name, PostgresqlDatabaseArgs args, CustomResourceOptions? opts = null)
public PostgresqlDatabase(String name, PostgresqlDatabaseArgs args)
public PostgresqlDatabase(String name, PostgresqlDatabaseArgs args, CustomResourceOptions options)
type: tencentcloud:PostgresqlDatabase
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "tencentcloud_postgresql_database" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PostgresqlDatabaseArgs
- 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 PostgresqlDatabaseArgs
- 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 PostgresqlDatabaseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PostgresqlDatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PostgresqlDatabaseArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
PostgresqlDatabase 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 PostgresqlDatabase resource accepts the following input properties:
- Database
Name string - Database name.
- Database
Owner string - Database owner account.
- Db
Instance stringId - DB instance ID, such as postgres-6fego161.
- Collate string
- Database collation rule.
- Ctype string
- Database character classification.
- Encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- Postgresql
Database stringId - ID of the resource.
- Database
Name string - Database name.
- Database
Owner string - Database owner account.
- Db
Instance stringId - DB instance ID, such as postgres-6fego161.
- Collate string
- Database collation rule.
- Ctype string
- Database character classification.
- Encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- Postgresql
Database stringId - ID of the resource.
- database_
name string - Database name.
- database_
owner string - Database owner account.
- db_
instance_ stringid - DB instance ID, such as postgres-6fego161.
- collate string
- Database collation rule.
- ctype string
- Database character classification.
- encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql_
database_ stringid - ID of the resource.
- database
Name String - Database name.
- database
Owner String - Database owner account.
- db
Instance StringId - DB instance ID, such as postgres-6fego161.
- collate String
- Database collation rule.
- ctype String
- Database character classification.
- encoding String
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql
Database StringId - ID of the resource.
- database
Name string - Database name.
- database
Owner string - Database owner account.
- db
Instance stringId - DB instance ID, such as postgres-6fego161.
- collate string
- Database collation rule.
- ctype string
- Database character classification.
- encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql
Database stringId - ID of the resource.
- database_
name str - Database name.
- database_
owner str - Database owner account.
- db_
instance_ strid - DB instance ID, such as postgres-6fego161.
- collate str
- Database collation rule.
- ctype str
- Database character classification.
- encoding str
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql_
database_ strid - ID of the resource.
- database
Name String - Database name.
- database
Owner String - Database owner account.
- db
Instance StringId - DB instance ID, such as postgres-6fego161.
- collate String
- Database collation rule.
- ctype String
- Database character classification.
- encoding String
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql
Database StringId - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the PostgresqlDatabase resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PostgresqlDatabase Resource
Get an existing PostgresqlDatabase 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?: PostgresqlDatabaseState, opts?: CustomResourceOptions): PostgresqlDatabase@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
collate: Optional[str] = None,
ctype: Optional[str] = None,
database_name: Optional[str] = None,
database_owner: Optional[str] = None,
db_instance_id: Optional[str] = None,
encoding: Optional[str] = None,
postgresql_database_id: Optional[str] = None) -> PostgresqlDatabasefunc GetPostgresqlDatabase(ctx *Context, name string, id IDInput, state *PostgresqlDatabaseState, opts ...ResourceOption) (*PostgresqlDatabase, error)public static PostgresqlDatabase Get(string name, Input<string> id, PostgresqlDatabaseState? state, CustomResourceOptions? opts = null)public static PostgresqlDatabase get(String name, Output<String> id, PostgresqlDatabaseState state, CustomResourceOptions options)resources: _: type: tencentcloud:PostgresqlDatabase get: id: ${id}import {
to = tencentcloud_postgresql_database.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.
- Collate string
- Database collation rule.
- Ctype string
- Database character classification.
- Database
Name string - Database name.
- Database
Owner string - Database owner account.
- Db
Instance stringId - DB instance ID, such as postgres-6fego161.
- Encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- Postgresql
Database stringId - ID of the resource.
- Collate string
- Database collation rule.
- Ctype string
- Database character classification.
- Database
Name string - Database name.
- Database
Owner string - Database owner account.
- Db
Instance stringId - DB instance ID, such as postgres-6fego161.
- Encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- Postgresql
Database stringId - ID of the resource.
- collate string
- Database collation rule.
- ctype string
- Database character classification.
- database_
name string - Database name.
- database_
owner string - Database owner account.
- db_
instance_ stringid - DB instance ID, such as postgres-6fego161.
- encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql_
database_ stringid - ID of the resource.
- collate String
- Database collation rule.
- ctype String
- Database character classification.
- database
Name String - Database name.
- database
Owner String - Database owner account.
- db
Instance StringId - DB instance ID, such as postgres-6fego161.
- encoding String
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql
Database StringId - ID of the resource.
- collate string
- Database collation rule.
- ctype string
- Database character classification.
- database
Name string - Database name.
- database
Owner string - Database owner account.
- db
Instance stringId - DB instance ID, such as postgres-6fego161.
- encoding string
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql
Database stringId - ID of the resource.
- collate str
- Database collation rule.
- ctype str
- Database character classification.
- database_
name str - Database name.
- database_
owner str - Database owner account.
- db_
instance_ strid - DB instance ID, such as postgres-6fego161.
- encoding str
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql_
database_ strid - ID of the resource.
- collate String
- Database collation rule.
- ctype String
- Database character classification.
- database
Name String - Database name.
- database
Owner String - Database owner account.
- db
Instance StringId - DB instance ID, such as postgres-6fego161.
- encoding String
- Database character encoding, such as UTF8, LATIN1, LATIN2, WIN1250, WIN1251, WIN1252, KOI8R, EUC_JP, EUC_KR. Default: UTF8.
- postgresql
Database StringId - ID of the resource.
Import
PostgreSQL database can be imported using the composite ID db_instance_id#database_name, e.g.
$ pulumi import tencentcloud:index/postgresqlDatabase:PostgresqlDatabase example postgres-6fego161#test_db
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
published on Friday, Aug 14, 2026 by tencentcloudstack