1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. MonitorGrafanaInstance
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.MonitorGrafanaInstance

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a monitor grafanaInstance

    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-6";
    const vpc = new tencentcloud.Vpc("vpc", {cidrBlock: "10.0.0.0/16"});
    const subnet = new tencentcloud.Subnet("subnet", {
        vpcId: vpc.vpcId,
        availabilityZone: availabilityZone,
        cidrBlock: "10.0.1.0/24",
    });
    const foo = new tencentcloud.MonitorGrafanaInstance("foo", {
        instanceName: "test-grafana",
        vpcId: vpc.vpcId,
        subnetIds: [subnet.subnetId],
        grafanaInitPassword: "1234567890",
        enableInternet: false,
        isDestroy: true,
        tags: {
            createdBy: "test",
        },
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    config = pulumi.Config()
    availability_zone = config.get("availabilityZone")
    if availability_zone is None:
        availability_zone = "ap-guangzhou-6"
    vpc = tencentcloud.Vpc("vpc", cidr_block="10.0.0.0/16")
    subnet = tencentcloud.Subnet("subnet",
        vpc_id=vpc.vpc_id,
        availability_zone=availability_zone,
        cidr_block="10.0.1.0/24")
    foo = tencentcloud.MonitorGrafanaInstance("foo",
        instance_name="test-grafana",
        vpc_id=vpc.vpc_id,
        subnet_ids=[subnet.subnet_id],
        grafana_init_password="1234567890",
        enable_internet=False,
        is_destroy=True,
        tags={
            "createdBy": "test",
        })
    
    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-6"
    		if param := cfg.Get("availabilityZone"); param != "" {
    			availabilityZone = param
    		}
    		vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
    			CidrBlock: pulumi.String("10.0.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
    			VpcId:            vpc.VpcId,
    			AvailabilityZone: pulumi.String(availabilityZone),
    			CidrBlock:        pulumi.String("10.0.1.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = tencentcloud.NewMonitorGrafanaInstance(ctx, "foo", &tencentcloud.MonitorGrafanaInstanceArgs{
    			InstanceName: pulumi.String("test-grafana"),
    			VpcId:        vpc.VpcId,
    			SubnetIds: pulumi.StringArray{
    				subnet.SubnetId,
    			},
    			GrafanaInitPassword: pulumi.String("1234567890"),
    			EnableInternet:      pulumi.Bool(false),
    			IsDestroy:           pulumi.Bool(true),
    			Tags: pulumi.StringMap{
    				"createdBy": pulumi.String("test"),
    			},
    		})
    		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-6";
        var vpc = new Tencentcloud.Vpc("vpc", new()
        {
            CidrBlock = "10.0.0.0/16",
        });
    
        var subnet = new Tencentcloud.Subnet("subnet", new()
        {
            VpcId = vpc.VpcId,
            AvailabilityZone = availabilityZone,
            CidrBlock = "10.0.1.0/24",
        });
    
        var foo = new Tencentcloud.MonitorGrafanaInstance("foo", new()
        {
            InstanceName = "test-grafana",
            VpcId = vpc.VpcId,
            SubnetIds = new[]
            {
                subnet.SubnetId,
            },
            GrafanaInitPassword = "1234567890",
            EnableInternet = false,
            IsDestroy = true,
            Tags = 
            {
                { "createdBy", "test" },
            },
        });
    
    });
    
    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.MonitorGrafanaInstance;
    import com.pulumi.tencentcloud.MonitorGrafanaInstanceArgs;
    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-6");
            var vpc = new Vpc("vpc", VpcArgs.builder()
                .cidrBlock("10.0.0.0/16")
                .build());
    
            var subnet = new Subnet("subnet", SubnetArgs.builder()
                .vpcId(vpc.vpcId())
                .availabilityZone(availabilityZone)
                .cidrBlock("10.0.1.0/24")
                .build());
    
            var foo = new MonitorGrafanaInstance("foo", MonitorGrafanaInstanceArgs.builder()
                .instanceName("test-grafana")
                .vpcId(vpc.vpcId())
                .subnetIds(subnet.subnetId())
                .grafanaInitPassword("1234567890")
                .enableInternet(false)
                .isDestroy(true)
                .tags(Map.of("createdBy", "test"))
                .build());
    
        }
    }
    
    configuration:
      availabilityZone:
        type: string
        default: ap-guangzhou-6
    resources:
      vpc:
        type: tencentcloud:Vpc
        properties:
          cidrBlock: 10.0.0.0/16
      subnet:
        type: tencentcloud:Subnet
        properties:
          vpcId: ${vpc.vpcId}
          availabilityZone: ${availabilityZone}
          cidrBlock: 10.0.1.0/24
      foo:
        type: tencentcloud:MonitorGrafanaInstance
        properties:
          instanceName: test-grafana
          vpcId: ${vpc.vpcId}
          subnetIds:
            - ${subnet.subnetId}
          grafanaInitPassword: '1234567890'
          enableInternet: false
          isDestroy: true
          tags:
            createdBy: test
    

    Create MonitorGrafanaInstance Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MonitorGrafanaInstance(name: string, args: MonitorGrafanaInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def MonitorGrafanaInstance(resource_name: str,
                               args: MonitorGrafanaInstanceArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def MonitorGrafanaInstance(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               instance_name: Optional[str] = None,
                               auto_voucher: Optional[bool] = None,
                               enable_internet: Optional[bool] = None,
                               grafana_init_password: Optional[str] = None,
                               is_destroy: Optional[bool] = None,
                               is_distroy: Optional[bool] = None,
                               monitor_grafana_instance_id: Optional[str] = None,
                               subnet_ids: Optional[Sequence[str]] = None,
                               tags: Optional[Mapping[str, str]] = None,
                               vpc_id: Optional[str] = None)
    func NewMonitorGrafanaInstance(ctx *Context, name string, args MonitorGrafanaInstanceArgs, opts ...ResourceOption) (*MonitorGrafanaInstance, error)
    public MonitorGrafanaInstance(string name, MonitorGrafanaInstanceArgs args, CustomResourceOptions? opts = null)
    public MonitorGrafanaInstance(String name, MonitorGrafanaInstanceArgs args)
    public MonitorGrafanaInstance(String name, MonitorGrafanaInstanceArgs args, CustomResourceOptions options)
    
    type: tencentcloud:MonitorGrafanaInstance
    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 MonitorGrafanaInstanceArgs
    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 MonitorGrafanaInstanceArgs
    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 MonitorGrafanaInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MonitorGrafanaInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MonitorGrafanaInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    MonitorGrafanaInstance 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 MonitorGrafanaInstance resource accepts the following input properties:

    InstanceName string
    Instance name.
    AutoVoucher bool
    Whether to automatically use vouchers.
    EnableInternet bool
    Control whether grafana could be accessed by internet.
    GrafanaInitPassword string
    Grafana server admin password.
    IsDestroy bool
    Whether to clean up completely, the default is false.
    IsDistroy bool
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    MonitorGrafanaInstanceId string
    ID of the resource.
    SubnetIds List<string>
    Subnet Id array.
    Tags Dictionary<string, string>
    Tag description list.
    VpcId string
    Vpc Id.
    InstanceName string
    Instance name.
    AutoVoucher bool
    Whether to automatically use vouchers.
    EnableInternet bool
    Control whether grafana could be accessed by internet.
    GrafanaInitPassword string
    Grafana server admin password.
    IsDestroy bool
    Whether to clean up completely, the default is false.
    IsDistroy bool
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    MonitorGrafanaInstanceId string
    ID of the resource.
    SubnetIds []string
    Subnet Id array.
    Tags map[string]string
    Tag description list.
    VpcId string
    Vpc Id.
    instanceName String
    Instance name.
    autoVoucher Boolean
    Whether to automatically use vouchers.
    enableInternet Boolean
    Control whether grafana could be accessed by internet.
    grafanaInitPassword String
    Grafana server admin password.
    isDestroy Boolean
    Whether to clean up completely, the default is false.
    isDistroy Boolean
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitorGrafanaInstanceId String
    ID of the resource.
    subnetIds List<String>
    Subnet Id array.
    tags Map<String,String>
    Tag description list.
    vpcId String
    Vpc Id.
    instanceName string
    Instance name.
    autoVoucher boolean
    Whether to automatically use vouchers.
    enableInternet boolean
    Control whether grafana could be accessed by internet.
    grafanaInitPassword string
    Grafana server admin password.
    isDestroy boolean
    Whether to clean up completely, the default is false.
    isDistroy boolean
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitorGrafanaInstanceId string
    ID of the resource.
    subnetIds string[]
    Subnet Id array.
    tags {[key: string]: string}
    Tag description list.
    vpcId string
    Vpc Id.
    instance_name str
    Instance name.
    auto_voucher bool
    Whether to automatically use vouchers.
    enable_internet bool
    Control whether grafana could be accessed by internet.
    grafana_init_password str
    Grafana server admin password.
    is_destroy bool
    Whether to clean up completely, the default is false.
    is_distroy bool
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitor_grafana_instance_id str
    ID of the resource.
    subnet_ids Sequence[str]
    Subnet Id array.
    tags Mapping[str, str]
    Tag description list.
    vpc_id str
    Vpc Id.
    instanceName String
    Instance name.
    autoVoucher Boolean
    Whether to automatically use vouchers.
    enableInternet Boolean
    Control whether grafana could be accessed by internet.
    grafanaInitPassword String
    Grafana server admin password.
    isDestroy Boolean
    Whether to clean up completely, the default is false.
    isDistroy Boolean
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitorGrafanaInstanceId String
    ID of the resource.
    subnetIds List<String>
    Subnet Id array.
    tags Map<String>
    Tag description list.
    vpcId String
    Vpc Id.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MonitorGrafanaInstance resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    Grafana instance id.
    InstanceStatus double
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    InternalUrl string
    Grafana public address.
    InternetUrl string
    Grafana intranet address.
    RootUrl string
    Grafana external url which could be accessed by user.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    Grafana instance id.
    InstanceStatus float64
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    InternalUrl string
    Grafana public address.
    InternetUrl string
    Grafana intranet address.
    RootUrl string
    Grafana external url which could be accessed by user.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    Grafana instance id.
    instanceStatus Double
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internalUrl String
    Grafana public address.
    internetUrl String
    Grafana intranet address.
    rootUrl String
    Grafana external url which could be accessed by user.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    Grafana instance id.
    instanceStatus number
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internalUrl string
    Grafana public address.
    internetUrl string
    Grafana intranet address.
    rootUrl string
    Grafana external url which could be accessed by user.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    Grafana instance id.
    instance_status float
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internal_url str
    Grafana public address.
    internet_url str
    Grafana intranet address.
    root_url str
    Grafana external url which could be accessed by user.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    Grafana instance id.
    instanceStatus Number
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internalUrl String
    Grafana public address.
    internetUrl String
    Grafana intranet address.
    rootUrl String
    Grafana external url which could be accessed by user.

    Look up Existing MonitorGrafanaInstance Resource

    Get an existing MonitorGrafanaInstance 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?: MonitorGrafanaInstanceState, opts?: CustomResourceOptions): MonitorGrafanaInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_voucher: Optional[bool] = None,
            enable_internet: Optional[bool] = None,
            grafana_init_password: Optional[str] = None,
            instance_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            instance_status: Optional[float] = None,
            internal_url: Optional[str] = None,
            internet_url: Optional[str] = None,
            is_destroy: Optional[bool] = None,
            is_distroy: Optional[bool] = None,
            monitor_grafana_instance_id: Optional[str] = None,
            root_url: Optional[str] = None,
            subnet_ids: Optional[Sequence[str]] = None,
            tags: Optional[Mapping[str, str]] = None,
            vpc_id: Optional[str] = None) -> MonitorGrafanaInstance
    func GetMonitorGrafanaInstance(ctx *Context, name string, id IDInput, state *MonitorGrafanaInstanceState, opts ...ResourceOption) (*MonitorGrafanaInstance, error)
    public static MonitorGrafanaInstance Get(string name, Input<string> id, MonitorGrafanaInstanceState? state, CustomResourceOptions? opts = null)
    public static MonitorGrafanaInstance get(String name, Output<String> id, MonitorGrafanaInstanceState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:MonitorGrafanaInstance    get:      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.
    The following state arguments are supported:
    AutoVoucher bool
    Whether to automatically use vouchers.
    EnableInternet bool
    Control whether grafana could be accessed by internet.
    GrafanaInitPassword string
    Grafana server admin password.
    InstanceId string
    Grafana instance id.
    InstanceName string
    Instance name.
    InstanceStatus double
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    InternalUrl string
    Grafana public address.
    InternetUrl string
    Grafana intranet address.
    IsDestroy bool
    Whether to clean up completely, the default is false.
    IsDistroy bool
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    MonitorGrafanaInstanceId string
    ID of the resource.
    RootUrl string
    Grafana external url which could be accessed by user.
    SubnetIds List<string>
    Subnet Id array.
    Tags Dictionary<string, string>
    Tag description list.
    VpcId string
    Vpc Id.
    AutoVoucher bool
    Whether to automatically use vouchers.
    EnableInternet bool
    Control whether grafana could be accessed by internet.
    GrafanaInitPassword string
    Grafana server admin password.
    InstanceId string
    Grafana instance id.
    InstanceName string
    Instance name.
    InstanceStatus float64
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    InternalUrl string
    Grafana public address.
    InternetUrl string
    Grafana intranet address.
    IsDestroy bool
    Whether to clean up completely, the default is false.
    IsDistroy bool
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    MonitorGrafanaInstanceId string
    ID of the resource.
    RootUrl string
    Grafana external url which could be accessed by user.
    SubnetIds []string
    Subnet Id array.
    Tags map[string]string
    Tag description list.
    VpcId string
    Vpc Id.
    autoVoucher Boolean
    Whether to automatically use vouchers.
    enableInternet Boolean
    Control whether grafana could be accessed by internet.
    grafanaInitPassword String
    Grafana server admin password.
    instanceId String
    Grafana instance id.
    instanceName String
    Instance name.
    instanceStatus Double
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internalUrl String
    Grafana public address.
    internetUrl String
    Grafana intranet address.
    isDestroy Boolean
    Whether to clean up completely, the default is false.
    isDistroy Boolean
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitorGrafanaInstanceId String
    ID of the resource.
    rootUrl String
    Grafana external url which could be accessed by user.
    subnetIds List<String>
    Subnet Id array.
    tags Map<String,String>
    Tag description list.
    vpcId String
    Vpc Id.
    autoVoucher boolean
    Whether to automatically use vouchers.
    enableInternet boolean
    Control whether grafana could be accessed by internet.
    grafanaInitPassword string
    Grafana server admin password.
    instanceId string
    Grafana instance id.
    instanceName string
    Instance name.
    instanceStatus number
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internalUrl string
    Grafana public address.
    internetUrl string
    Grafana intranet address.
    isDestroy boolean
    Whether to clean up completely, the default is false.
    isDistroy boolean
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitorGrafanaInstanceId string
    ID of the resource.
    rootUrl string
    Grafana external url which could be accessed by user.
    subnetIds string[]
    Subnet Id array.
    tags {[key: string]: string}
    Tag description list.
    vpcId string
    Vpc Id.
    auto_voucher bool
    Whether to automatically use vouchers.
    enable_internet bool
    Control whether grafana could be accessed by internet.
    grafana_init_password str
    Grafana server admin password.
    instance_id str
    Grafana instance id.
    instance_name str
    Instance name.
    instance_status float
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internal_url str
    Grafana public address.
    internet_url str
    Grafana intranet address.
    is_destroy bool
    Whether to clean up completely, the default is false.
    is_distroy bool
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitor_grafana_instance_id str
    ID of the resource.
    root_url str
    Grafana external url which could be accessed by user.
    subnet_ids Sequence[str]
    Subnet Id array.
    tags Mapping[str, str]
    Tag description list.
    vpc_id str
    Vpc Id.
    autoVoucher Boolean
    Whether to automatically use vouchers.
    enableInternet Boolean
    Control whether grafana could be accessed by internet.
    grafanaInitPassword String
    Grafana server admin password.
    instanceId String
    Grafana instance id.
    instanceName String
    Instance name.
    instanceStatus Number
    Grafana instance status, 1: Creating, 2: Running, 6: Stopped.
    internalUrl String
    Grafana public address.
    internetUrl String
    Grafana intranet address.
    isDestroy Boolean
    Whether to clean up completely, the default is false.
    isDistroy Boolean
    It has been deprecated from version 1.81.16. Whether to clean up completely, the default is false.

    Deprecated: Deprecated

    monitorGrafanaInstanceId String
    ID of the resource.
    rootUrl String
    Grafana external url which could be accessed by user.
    subnetIds List<String>
    Subnet Id array.
    tags Map<String>
    Tag description list.
    vpcId String
    Vpc Id.

    Import

    monitor grafanaInstance can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/monitorGrafanaInstance:MonitorGrafanaInstance foo grafanaInstance_id
    

    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 tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack