published on Tuesday, Jun 30, 2026 by tencentcloudstack
published on Tuesday, Jun 30, 2026 by tencentcloudstack
Provides a resource to create a Tencent Cloud Global Accelerator V2 (GA2) accelerate area.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.Ga2GlobalAccelerator("example", {
name: "tf-example",
instanceChargeType: "POSTPAID",
description: "tf example global accelerator",
tags: {
createdBy: "Terraform",
},
});
const exampleGa2AccelerateArea = new tencentcloud.Ga2AccelerateArea("example", {
globalAcceleratorId: example.ga2GlobalAcceleratorId,
accelerateRegion: "ap-guangzhou",
bandwidth: 10,
ispType: "BGP",
ipVersion: "IPv4",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.Ga2GlobalAccelerator("example",
name="tf-example",
instance_charge_type="POSTPAID",
description="tf example global accelerator",
tags={
"createdBy": "Terraform",
})
example_ga2_accelerate_area = tencentcloud.Ga2AccelerateArea("example",
global_accelerator_id=example.ga2_global_accelerator_id,
accelerate_region="ap-guangzhou",
bandwidth=10,
isp_type="BGP",
ip_version="IPv4")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := tencentcloud.NewGa2GlobalAccelerator(ctx, "example", &tencentcloud.Ga2GlobalAcceleratorArgs{
Name: pulumi.String("tf-example"),
InstanceChargeType: pulumi.String("POSTPAID"),
Description: pulumi.String("tf example global accelerator"),
Tags: pulumi.StringMap{
"createdBy": pulumi.String("Terraform"),
},
})
if err != nil {
return err
}
_, err = tencentcloud.NewGa2AccelerateArea(ctx, "example", &tencentcloud.Ga2AccelerateAreaArgs{
GlobalAcceleratorId: example.Ga2GlobalAcceleratorId,
AccelerateRegion: pulumi.String("ap-guangzhou"),
Bandwidth: pulumi.Float64(10),
IspType: pulumi.String("BGP"),
IpVersion: pulumi.String("IPv4"),
})
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 example = new Tencentcloud.Ga2GlobalAccelerator("example", new()
{
Name = "tf-example",
InstanceChargeType = "POSTPAID",
Description = "tf example global accelerator",
Tags =
{
{ "createdBy", "Terraform" },
},
});
var exampleGa2AccelerateArea = new Tencentcloud.Ga2AccelerateArea("example", new()
{
GlobalAcceleratorId = example.Ga2GlobalAcceleratorId,
AccelerateRegion = "ap-guangzhou",
Bandwidth = 10,
IspType = "BGP",
IpVersion = "IPv4",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.Ga2GlobalAccelerator;
import com.pulumi.tencentcloud.Ga2GlobalAcceleratorArgs;
import com.pulumi.tencentcloud.Ga2AccelerateArea;
import com.pulumi.tencentcloud.Ga2AccelerateAreaArgs;
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 example = new Ga2GlobalAccelerator("example", Ga2GlobalAcceleratorArgs.builder()
.name("tf-example")
.instanceChargeType("POSTPAID")
.description("tf example global accelerator")
.tags(Map.of("createdBy", "Terraform"))
.build());
var exampleGa2AccelerateArea = new Ga2AccelerateArea("exampleGa2AccelerateArea", Ga2AccelerateAreaArgs.builder()
.globalAcceleratorId(example.ga2GlobalAcceleratorId())
.accelerateRegion("ap-guangzhou")
.bandwidth(10.0)
.ispType("BGP")
.ipVersion("IPv4")
.build());
}
}
resources:
example:
type: tencentcloud:Ga2GlobalAccelerator
properties:
name: tf-example
instanceChargeType: POSTPAID
description: tf example global accelerator
tags:
createdBy: Terraform
exampleGa2AccelerateArea:
type: tencentcloud:Ga2AccelerateArea
name: example
properties:
globalAcceleratorId: ${example.ga2GlobalAcceleratorId}
accelerateRegion: ap-guangzhou
bandwidth: 10
ispType: BGP
ipVersion: IPv4
Example coming soon!
Create Ga2AccelerateArea Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ga2AccelerateArea(name: string, args: Ga2AccelerateAreaArgs, opts?: CustomResourceOptions);@overload
def Ga2AccelerateArea(resource_name: str,
args: Ga2AccelerateAreaArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Ga2AccelerateArea(resource_name: str,
opts: Optional[ResourceOptions] = None,
accelerate_region: Optional[str] = None,
global_accelerator_id: Optional[str] = None,
bandwidth: Optional[float] = None,
ga2_accelerate_area_id: Optional[str] = None,
ip_addresses: Optional[Sequence[str]] = None,
ip_version: Optional[str] = None,
isp_type: Optional[str] = None,
timeouts: Optional[Ga2AccelerateAreaTimeoutsArgs] = None)func NewGa2AccelerateArea(ctx *Context, name string, args Ga2AccelerateAreaArgs, opts ...ResourceOption) (*Ga2AccelerateArea, error)public Ga2AccelerateArea(string name, Ga2AccelerateAreaArgs args, CustomResourceOptions? opts = null)
public Ga2AccelerateArea(String name, Ga2AccelerateAreaArgs args)
public Ga2AccelerateArea(String name, Ga2AccelerateAreaArgs args, CustomResourceOptions options)
type: tencentcloud:Ga2AccelerateArea
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "tencentcloud_ga2acceleratearea" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args Ga2AccelerateAreaArgs
- 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 Ga2AccelerateAreaArgs
- 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 Ga2AccelerateAreaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Ga2AccelerateAreaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Ga2AccelerateAreaArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Ga2AccelerateArea 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 Ga2AccelerateArea resource accepts the following input properties:
- Accelerate
Region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- Global
Accelerator stringId - Global accelerator instance ID this acceleration region belongs to.
- Bandwidth double
- Acceleration bandwidth in Mbps.
- Ga2Accelerate
Area stringId - ID of the resource.
- Ip
Addresses List<string> - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- Ip
Version string - IP version. Only
IPv4is supported. Default:IPv4. - Isp
Type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - Timeouts
Ga2Accelerate
Area Timeouts
- Accelerate
Region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- Global
Accelerator stringId - Global accelerator instance ID this acceleration region belongs to.
- Bandwidth float64
- Acceleration bandwidth in Mbps.
- Ga2Accelerate
Area stringId - ID of the resource.
- Ip
Addresses []string - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- Ip
Version string - IP version. Only
IPv4is supported. Default:IPv4. - Isp
Type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - Timeouts
Ga2Accelerate
Area Timeouts Args
- accelerate_
region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- global_
accelerator_ stringid - Global accelerator instance ID this acceleration region belongs to.
- bandwidth number
- Acceleration bandwidth in Mbps.
- ga2_
accelerate_ stringarea_ id - ID of the resource.
- ip_
addresses list(string) - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip_
version string - IP version. Only
IPv4is supported. Default:IPv4. - isp_
type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts object
- accelerate
Region String - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- global
Accelerator StringId - Global accelerator instance ID this acceleration region belongs to.
- bandwidth Double
- Acceleration bandwidth in Mbps.
- ga2Accelerate
Area StringId - ID of the resource.
- ip
Addresses List<String> - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip
Version String - IP version. Only
IPv4is supported. Default:IPv4. - isp
Type String - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts
Ga2Accelerate
Area Timeouts
- accelerate
Region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- global
Accelerator stringId - Global accelerator instance ID this acceleration region belongs to.
- bandwidth number
- Acceleration bandwidth in Mbps.
- ga2Accelerate
Area stringId - ID of the resource.
- ip
Addresses string[] - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip
Version string - IP version. Only
IPv4is supported. Default:IPv4. - isp
Type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts
Ga2Accelerate
Area Timeouts
- accelerate_
region str - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- global_
accelerator_ strid - Global accelerator instance ID this acceleration region belongs to.
- bandwidth float
- Acceleration bandwidth in Mbps.
- ga2_
accelerate_ strarea_ id - ID of the resource.
- ip_
addresses Sequence[str] - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip_
version str - IP version. Only
IPv4is supported. Default:IPv4. - isp_
type str - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts
Ga2Accelerate
Area Timeouts Args
- accelerate
Region String - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- global
Accelerator StringId - Global accelerator instance ID this acceleration region belongs to.
- bandwidth Number
- Acceleration bandwidth in Mbps.
- ga2Accelerate
Area StringId - ID of the resource.
- ip
Addresses List<String> - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip
Version String - IP version. Only
IPv4is supported. Default:IPv4. - isp
Type String - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Ga2AccelerateArea resource produces the following output properties:
- Accelerator
Area stringId - Acceleration region ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address List<Ga2AccelerateInfo Sets Area Ip Address Info Set> - IP address information list.
- Accelerator
Area stringId - Acceleration region ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address []Ga2AccelerateInfo Sets Area Ip Address Info Set - IP address information list.
- accelerator_
area_ stringid - Acceleration region ID.
- id string
- The provider-assigned unique ID for this managed resource.
- ip_
address_ list(object)info_ sets - IP address information list.
- accelerator
Area StringId - Acceleration region ID.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address List<Ga2AccelerateInfo Sets Area Ip Address Info Set> - IP address information list.
- accelerator
Area stringId - Acceleration region ID.
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Address Ga2AccelerateInfo Sets Area Ip Address Info Set[] - IP address information list.
- accelerator_
area_ strid - Acceleration region ID.
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
address_ Sequence[Ga2Accelerateinfo_ sets Area Ip Address Info Set] - IP address information list.
- accelerator
Area StringId - Acceleration region ID.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address List<Property Map>Info Sets - IP address information list.
Look up Existing Ga2AccelerateArea Resource
Get an existing Ga2AccelerateArea 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?: Ga2AccelerateAreaState, opts?: CustomResourceOptions): Ga2AccelerateArea@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accelerate_region: Optional[str] = None,
accelerator_area_id: Optional[str] = None,
bandwidth: Optional[float] = None,
ga2_accelerate_area_id: Optional[str] = None,
global_accelerator_id: Optional[str] = None,
ip_address_info_sets: Optional[Sequence[Ga2AccelerateAreaIpAddressInfoSetArgs]] = None,
ip_addresses: Optional[Sequence[str]] = None,
ip_version: Optional[str] = None,
isp_type: Optional[str] = None,
timeouts: Optional[Ga2AccelerateAreaTimeoutsArgs] = None) -> Ga2AccelerateAreafunc GetGa2AccelerateArea(ctx *Context, name string, id IDInput, state *Ga2AccelerateAreaState, opts ...ResourceOption) (*Ga2AccelerateArea, error)public static Ga2AccelerateArea Get(string name, Input<string> id, Ga2AccelerateAreaState? state, CustomResourceOptions? opts = null)public static Ga2AccelerateArea get(String name, Output<String> id, Ga2AccelerateAreaState state, CustomResourceOptions options)resources: _: type: tencentcloud:Ga2AccelerateArea get: id: ${id}import {
to = tencentcloud_ga2acceleratearea.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.
- Accelerate
Region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- Accelerator
Area stringId - Acceleration region ID.
- Bandwidth double
- Acceleration bandwidth in Mbps.
- Ga2Accelerate
Area stringId - ID of the resource.
- Global
Accelerator stringId - Global accelerator instance ID this acceleration region belongs to.
- Ip
Address List<Ga2AccelerateInfo Sets Area Ip Address Info Set> - IP address information list.
- Ip
Addresses List<string> - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- Ip
Version string - IP version. Only
IPv4is supported. Default:IPv4. - Isp
Type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - Timeouts
Ga2Accelerate
Area Timeouts
- Accelerate
Region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- Accelerator
Area stringId - Acceleration region ID.
- Bandwidth float64
- Acceleration bandwidth in Mbps.
- Ga2Accelerate
Area stringId - ID of the resource.
- Global
Accelerator stringId - Global accelerator instance ID this acceleration region belongs to.
- Ip
Address []Ga2AccelerateInfo Sets Area Ip Address Info Set Args - IP address information list.
- Ip
Addresses []string - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- Ip
Version string - IP version. Only
IPv4is supported. Default:IPv4. - Isp
Type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - Timeouts
Ga2Accelerate
Area Timeouts Args
- accelerate_
region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- accelerator_
area_ stringid - Acceleration region ID.
- bandwidth number
- Acceleration bandwidth in Mbps.
- ga2_
accelerate_ stringarea_ id - ID of the resource.
- global_
accelerator_ stringid - Global accelerator instance ID this acceleration region belongs to.
- ip_
address_ list(object)info_ sets - IP address information list.
- ip_
addresses list(string) - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip_
version string - IP version. Only
IPv4is supported. Default:IPv4. - isp_
type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts object
- accelerate
Region String - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- accelerator
Area StringId - Acceleration region ID.
- bandwidth Double
- Acceleration bandwidth in Mbps.
- ga2Accelerate
Area StringId - ID of the resource.
- global
Accelerator StringId - Global accelerator instance ID this acceleration region belongs to.
- ip
Address List<Ga2AccelerateInfo Sets Area Ip Address Info Set> - IP address information list.
- ip
Addresses List<String> - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip
Version String - IP version. Only
IPv4is supported. Default:IPv4. - isp
Type String - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts
Ga2Accelerate
Area Timeouts
- accelerate
Region string - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- accelerator
Area stringId - Acceleration region ID.
- bandwidth number
- Acceleration bandwidth in Mbps.
- ga2Accelerate
Area stringId - ID of the resource.
- global
Accelerator stringId - Global accelerator instance ID this acceleration region belongs to.
- ip
Address Ga2AccelerateInfo Sets Area Ip Address Info Set[] - IP address information list.
- ip
Addresses string[] - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip
Version string - IP version. Only
IPv4is supported. Default:IPv4. - isp
Type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts
Ga2Accelerate
Area Timeouts
- accelerate_
region str - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- accelerator_
area_ strid - Acceleration region ID.
- bandwidth float
- Acceleration bandwidth in Mbps.
- ga2_
accelerate_ strarea_ id - ID of the resource.
- global_
accelerator_ strid - Global accelerator instance ID this acceleration region belongs to.
- ip_
address_ Sequence[Ga2Accelerateinfo_ sets Area Ip Address Info Set Args] - IP address information list.
- ip_
addresses Sequence[str] - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip_
version str - IP version. Only
IPv4is supported. Default:IPv4. - isp_
type str - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts
Ga2Accelerate
Area Timeouts Args
- accelerate
Region String - Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
- accelerator
Area StringId - Acceleration region ID.
- bandwidth Number
- Acceleration bandwidth in Mbps.
- ga2Accelerate
Area StringId - ID of the resource.
- global
Accelerator StringId - Global accelerator instance ID this acceleration region belongs to.
- ip
Address List<Property Map>Info Sets - IP address information list.
- ip
Addresses List<String> - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- ip
Version String - IP version. Only
IPv4is supported. Default:IPv4. - isp
Type String - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values. - timeouts Property Map
Supporting Types
Ga2AccelerateAreaIpAddressInfoSet, Ga2AccelerateAreaIpAddressInfoSetArgs
- ip_
address string - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- isp_
type string - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
- ip_
address str - Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
- isp_
type str - ISP type. Default:
BGP. BesidesBGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
Ga2AccelerateAreaTimeouts, Ga2AccelerateAreaTimeoutsArgs
Import
GA2 accelerate area can be imported using the composite id <global_accelerator_id>#<accelerator_area_id>, e.g.
$ pulumi import tencentcloud:index/ga2AccelerateArea:Ga2AccelerateArea example ga-jg9gepn0#area-jrsub43y
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 Tuesday, Jun 30, 2026 by tencentcloudstack