published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Provides a resource to create a Tencent Cloud Global Accelerator V2 (GA2) ACL rule set that manages the full collection of ACL rules under one ACL policy.
NOTE: This resource must exclusive in one acl policy, do not declare additional acl rule resources of this acl policy elsewhere.
NOTE: The field length for
acl_entriesis subject to account resource quotas.
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 exampleGa2GlobalAcceleratorAclPolicy = new tencentcloud.Ga2GlobalAcceleratorAclPolicy("example", {
globalAcceleratorId: example.ga2GlobalAcceleratorId,
defaultAction: "ACCEPT",
status: "OPEN",
});
const exampleGa2GlobalAcceleratorAclRuleSet = new tencentcloud.Ga2GlobalAcceleratorAclRuleSet("example", {
globalAcceleratorId: example.ga2GlobalAcceleratorId,
globalAcceleratorAclPolicyId: exampleGa2GlobalAcceleratorAclPolicy.globalAcceleratorAclPolicyId,
aclEntries: [
{
protocol: "TCP",
port: "80",
sourceCidrBlock: "10.0.0.0/24",
policy: "ACCEPT",
description: "tf example acl rule 1",
},
{
protocol: "UDP",
port: "443",
sourceCidrBlock: "10.0.1.0/24",
policy: "DROP",
description: "tf example acl rule 2",
},
],
});
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_global_accelerator_acl_policy = tencentcloud.Ga2GlobalAcceleratorAclPolicy("example",
global_accelerator_id=example.ga2_global_accelerator_id,
default_action="ACCEPT",
status="OPEN")
example_ga2_global_accelerator_acl_rule_set = tencentcloud.Ga2GlobalAcceleratorAclRuleSet("example",
global_accelerator_id=example.ga2_global_accelerator_id,
global_accelerator_acl_policy_id=example_ga2_global_accelerator_acl_policy.global_accelerator_acl_policy_id,
acl_entries=[
{
"protocol": "TCP",
"port": "80",
"source_cidr_block": "10.0.0.0/24",
"policy": "ACCEPT",
"description": "tf example acl rule 1",
},
{
"protocol": "UDP",
"port": "443",
"source_cidr_block": "10.0.1.0/24",
"policy": "DROP",
"description": "tf example acl rule 2",
},
])
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
}
exampleGa2GlobalAcceleratorAclPolicy, err := tencentcloud.NewGa2GlobalAcceleratorAclPolicy(ctx, "example", &tencentcloud.Ga2GlobalAcceleratorAclPolicyArgs{
GlobalAcceleratorId: example.Ga2GlobalAcceleratorId,
DefaultAction: pulumi.String("ACCEPT"),
Status: pulumi.String("OPEN"),
})
if err != nil {
return err
}
_, err = tencentcloud.NewGa2GlobalAcceleratorAclRuleSet(ctx, "example", &tencentcloud.Ga2GlobalAcceleratorAclRuleSetArgs{
GlobalAcceleratorId: example.Ga2GlobalAcceleratorId,
GlobalAcceleratorAclPolicyId: exampleGa2GlobalAcceleratorAclPolicy.GlobalAcceleratorAclPolicyId,
AclEntries: tencentcloud.Ga2GlobalAcceleratorAclRuleSetAclEntryArray{
&tencentcloud.Ga2GlobalAcceleratorAclRuleSetAclEntryArgs{
Protocol: pulumi.String("TCP"),
Port: pulumi.String("80"),
SourceCidrBlock: pulumi.String("10.0.0.0/24"),
Policy: pulumi.String("ACCEPT"),
Description: pulumi.String("tf example acl rule 1"),
},
&tencentcloud.Ga2GlobalAcceleratorAclRuleSetAclEntryArgs{
Protocol: pulumi.String("UDP"),
Port: pulumi.String("443"),
SourceCidrBlock: pulumi.String("10.0.1.0/24"),
Policy: pulumi.String("DROP"),
Description: pulumi.String("tf example acl rule 2"),
},
},
})
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 exampleGa2GlobalAcceleratorAclPolicy = new Tencentcloud.Ga2GlobalAcceleratorAclPolicy("example", new()
{
GlobalAcceleratorId = example.Ga2GlobalAcceleratorId,
DefaultAction = "ACCEPT",
Status = "OPEN",
});
var exampleGa2GlobalAcceleratorAclRuleSet = new Tencentcloud.Ga2GlobalAcceleratorAclRuleSet("example", new()
{
GlobalAcceleratorId = example.Ga2GlobalAcceleratorId,
GlobalAcceleratorAclPolicyId = exampleGa2GlobalAcceleratorAclPolicy.GlobalAcceleratorAclPolicyId,
AclEntries = new[]
{
new Tencentcloud.Inputs.Ga2GlobalAcceleratorAclRuleSetAclEntryArgs
{
Protocol = "TCP",
Port = "80",
SourceCidrBlock = "10.0.0.0/24",
Policy = "ACCEPT",
Description = "tf example acl rule 1",
},
new Tencentcloud.Inputs.Ga2GlobalAcceleratorAclRuleSetAclEntryArgs
{
Protocol = "UDP",
Port = "443",
SourceCidrBlock = "10.0.1.0/24",
Policy = "DROP",
Description = "tf example acl rule 2",
},
},
});
});
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.Ga2GlobalAcceleratorAclPolicy;
import com.pulumi.tencentcloud.Ga2GlobalAcceleratorAclPolicyArgs;
import com.pulumi.tencentcloud.Ga2GlobalAcceleratorAclRuleSet;
import com.pulumi.tencentcloud.Ga2GlobalAcceleratorAclRuleSetArgs;
import com.pulumi.tencentcloud.inputs.Ga2GlobalAcceleratorAclRuleSetAclEntryArgs;
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 exampleGa2GlobalAcceleratorAclPolicy = new Ga2GlobalAcceleratorAclPolicy("exampleGa2GlobalAcceleratorAclPolicy", Ga2GlobalAcceleratorAclPolicyArgs.builder()
.globalAcceleratorId(example.ga2GlobalAcceleratorId())
.defaultAction("ACCEPT")
.status("OPEN")
.build());
var exampleGa2GlobalAcceleratorAclRuleSet = new Ga2GlobalAcceleratorAclRuleSet("exampleGa2GlobalAcceleratorAclRuleSet", Ga2GlobalAcceleratorAclRuleSetArgs.builder()
.globalAcceleratorId(example.ga2GlobalAcceleratorId())
.globalAcceleratorAclPolicyId(exampleGa2GlobalAcceleratorAclPolicy.globalAcceleratorAclPolicyId())
.aclEntries(
Ga2GlobalAcceleratorAclRuleSetAclEntryArgs.builder()
.protocol("TCP")
.port("80")
.sourceCidrBlock("10.0.0.0/24")
.policy("ACCEPT")
.description("tf example acl rule 1")
.build(),
Ga2GlobalAcceleratorAclRuleSetAclEntryArgs.builder()
.protocol("UDP")
.port("443")
.sourceCidrBlock("10.0.1.0/24")
.policy("DROP")
.description("tf example acl rule 2")
.build())
.build());
}
}
resources:
example:
type: tencentcloud:Ga2GlobalAccelerator
properties:
name: tf-example
instanceChargeType: POSTPAID
description: tf example global accelerator
tags:
createdBy: Terraform
exampleGa2GlobalAcceleratorAclPolicy:
type: tencentcloud:Ga2GlobalAcceleratorAclPolicy
name: example
properties:
globalAcceleratorId: ${example.ga2GlobalAcceleratorId}
defaultAction: ACCEPT
status: OPEN
exampleGa2GlobalAcceleratorAclRuleSet:
type: tencentcloud:Ga2GlobalAcceleratorAclRuleSet
name: example
properties:
globalAcceleratorId: ${example.ga2GlobalAcceleratorId}
globalAcceleratorAclPolicyId: ${exampleGa2GlobalAcceleratorAclPolicy.globalAcceleratorAclPolicyId}
aclEntries:
- protocol: TCP
port: '80'
sourceCidrBlock: 10.0.0.0/24
policy: ACCEPT
description: tf example acl rule 1
- protocol: UDP
port: '443'
sourceCidrBlock: 10.0.1.0/24
policy: DROP
description: tf example acl rule 2
Example coming soon!
Create Ga2GlobalAcceleratorAclRuleSet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ga2GlobalAcceleratorAclRuleSet(name: string, args: Ga2GlobalAcceleratorAclRuleSetArgs, opts?: CustomResourceOptions);@overload
def Ga2GlobalAcceleratorAclRuleSet(resource_name: str,
args: Ga2GlobalAcceleratorAclRuleSetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Ga2GlobalAcceleratorAclRuleSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
acl_entries: Optional[Sequence[Ga2GlobalAcceleratorAclRuleSetAclEntryArgs]] = None,
global_accelerator_acl_policy_id: Optional[str] = None,
global_accelerator_id: Optional[str] = None,
ga2_global_accelerator_acl_rule_set_id: Optional[str] = None,
timeouts: Optional[Ga2GlobalAcceleratorAclRuleSetTimeoutsArgs] = None)func NewGa2GlobalAcceleratorAclRuleSet(ctx *Context, name string, args Ga2GlobalAcceleratorAclRuleSetArgs, opts ...ResourceOption) (*Ga2GlobalAcceleratorAclRuleSet, error)public Ga2GlobalAcceleratorAclRuleSet(string name, Ga2GlobalAcceleratorAclRuleSetArgs args, CustomResourceOptions? opts = null)
public Ga2GlobalAcceleratorAclRuleSet(String name, Ga2GlobalAcceleratorAclRuleSetArgs args)
public Ga2GlobalAcceleratorAclRuleSet(String name, Ga2GlobalAcceleratorAclRuleSetArgs args, CustomResourceOptions options)
type: tencentcloud:Ga2GlobalAcceleratorAclRuleSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "tencentcloud_ga2_global_accelerator_acl_rule_set" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args Ga2GlobalAcceleratorAclRuleSetArgs
- 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 Ga2GlobalAcceleratorAclRuleSetArgs
- 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 Ga2GlobalAcceleratorAclRuleSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Ga2GlobalAcceleratorAclRuleSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Ga2GlobalAcceleratorAclRuleSetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Ga2GlobalAcceleratorAclRuleSet 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 Ga2GlobalAcceleratorAclRuleSet resource accepts the following input properties:
- Acl
Entries List<Ga2GlobalAccelerator Acl Rule Set Acl Entry> - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- Global
Accelerator stringAcl Policy Id - ACL policy ID that owns the rule set.
- Global
Accelerator stringId - Global accelerator instance ID.
- Ga2Global
Accelerator stringAcl Rule Set Id - ID of the resource.
- Timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts
- Acl
Entries []Ga2GlobalAccelerator Acl Rule Set Acl Entry Args - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- Global
Accelerator stringAcl Policy Id - ACL policy ID that owns the rule set.
- Global
Accelerator stringId - Global accelerator instance ID.
- Ga2Global
Accelerator stringAcl Rule Set Id - ID of the resource.
- Timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts Args
- acl_
entries list(object) - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- global_
accelerator_ stringacl_ policy_ id - ACL policy ID that owns the rule set.
- global_
accelerator_ stringid - Global accelerator instance ID.
- ga2_
global_ stringaccelerator_ acl_ rule_ set_ id - ID of the resource.
- timeouts object
- acl
Entries List<Ga2GlobalAccelerator Acl Rule Set Acl Entry> - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- global
Accelerator StringAcl Policy Id - ACL policy ID that owns the rule set.
- global
Accelerator StringId - Global accelerator instance ID.
- ga2Global
Accelerator StringAcl Rule Set Id - ID of the resource.
- timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts
- acl
Entries Ga2GlobalAccelerator Acl Rule Set Acl Entry[] - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- global
Accelerator stringAcl Policy Id - ACL policy ID that owns the rule set.
- global
Accelerator stringId - Global accelerator instance ID.
- ga2Global
Accelerator stringAcl Rule Set Id - ID of the resource.
- timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts
- acl_
entries Sequence[Ga2GlobalAccelerator Acl Rule Set Acl Entry Args] - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- global_
accelerator_ stracl_ policy_ id - ACL policy ID that owns the rule set.
- global_
accelerator_ strid - Global accelerator instance ID.
- ga2_
global_ straccelerator_ acl_ rule_ set_ id - ID of the resource.
- timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts Args
- acl
Entries List<Property Map> - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- global
Accelerator StringAcl Policy Id - ACL policy ID that owns the rule set.
- global
Accelerator StringId - Global accelerator instance ID.
- ga2Global
Accelerator StringAcl Rule Set Id - ID of the resource.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Ga2GlobalAcceleratorAclRuleSet 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 Ga2GlobalAcceleratorAclRuleSet Resource
Get an existing Ga2GlobalAcceleratorAclRuleSet 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?: Ga2GlobalAcceleratorAclRuleSetState, opts?: CustomResourceOptions): Ga2GlobalAcceleratorAclRuleSet@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
acl_entries: Optional[Sequence[Ga2GlobalAcceleratorAclRuleSetAclEntryArgs]] = None,
ga2_global_accelerator_acl_rule_set_id: Optional[str] = None,
global_accelerator_acl_policy_id: Optional[str] = None,
global_accelerator_id: Optional[str] = None,
timeouts: Optional[Ga2GlobalAcceleratorAclRuleSetTimeoutsArgs] = None) -> Ga2GlobalAcceleratorAclRuleSetfunc GetGa2GlobalAcceleratorAclRuleSet(ctx *Context, name string, id IDInput, state *Ga2GlobalAcceleratorAclRuleSetState, opts ...ResourceOption) (*Ga2GlobalAcceleratorAclRuleSet, error)public static Ga2GlobalAcceleratorAclRuleSet Get(string name, Input<string> id, Ga2GlobalAcceleratorAclRuleSetState? state, CustomResourceOptions? opts = null)public static Ga2GlobalAcceleratorAclRuleSet get(String name, Output<String> id, Ga2GlobalAcceleratorAclRuleSetState state, CustomResourceOptions options)resources: _: type: tencentcloud:Ga2GlobalAcceleratorAclRuleSet get: id: ${id}import {
to = tencentcloud_ga2_global_accelerator_acl_rule_set.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.
- Acl
Entries List<Ga2GlobalAccelerator Acl Rule Set Acl Entry> - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- Ga2Global
Accelerator stringAcl Rule Set Id - ID of the resource.
- Global
Accelerator stringAcl Policy Id - ACL policy ID that owns the rule set.
- Global
Accelerator stringId - Global accelerator instance ID.
- Timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts
- Acl
Entries []Ga2GlobalAccelerator Acl Rule Set Acl Entry Args - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- Ga2Global
Accelerator stringAcl Rule Set Id - ID of the resource.
- Global
Accelerator stringAcl Policy Id - ACL policy ID that owns the rule set.
- Global
Accelerator stringId - Global accelerator instance ID.
- Timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts Args
- acl_
entries list(object) - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- ga2_
global_ stringaccelerator_ acl_ rule_ set_ id - ID of the resource.
- global_
accelerator_ stringacl_ policy_ id - ACL policy ID that owns the rule set.
- global_
accelerator_ stringid - Global accelerator instance ID.
- timeouts object
- acl
Entries List<Ga2GlobalAccelerator Acl Rule Set Acl Entry> - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- ga2Global
Accelerator StringAcl Rule Set Id - ID of the resource.
- global
Accelerator StringAcl Policy Id - ACL policy ID that owns the rule set.
- global
Accelerator StringId - Global accelerator instance ID.
- timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts
- acl
Entries Ga2GlobalAccelerator Acl Rule Set Acl Entry[] - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- ga2Global
Accelerator stringAcl Rule Set Id - ID of the resource.
- global
Accelerator stringAcl Policy Id - ACL policy ID that owns the rule set.
- global
Accelerator stringId - Global accelerator instance ID.
- timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts
- acl_
entries Sequence[Ga2GlobalAccelerator Acl Rule Set Acl Entry Args] - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- ga2_
global_ straccelerator_ acl_ rule_ set_ id - ID of the resource.
- global_
accelerator_ stracl_ policy_ id - ACL policy ID that owns the rule set.
- global_
accelerator_ strid - Global accelerator instance ID.
- timeouts
Ga2Global
Accelerator Acl Rule Set Timeouts Args
- acl
Entries List<Property Map> - The desired full set of ACL rules under the policy. Treated as an unordered set; HCL element order has no semantic meaning.
- ga2Global
Accelerator StringAcl Rule Set Id - ID of the resource.
- global
Accelerator StringAcl Policy Id - ACL policy ID that owns the rule set.
- global
Accelerator StringId - Global accelerator instance ID.
- timeouts Property Map
Supporting Types
Ga2GlobalAcceleratorAclRuleSetAclEntry, Ga2GlobalAcceleratorAclRuleSetAclEntryArgs
- Policy string
- Action. Valid values:
ACCEPT(allow),DROP(deny). - Port string
- Port.
- Protocol string
- Protocol. Valid values:
TCP,UDP. - Source
Cidr stringBlock - Source CIDR block.
- Description string
- Description. Maximum length is 100 bytes.
- Global
Accelerator stringAcl Rule Id - ACL rule ID.
- Policy string
- Action. Valid values:
ACCEPT(allow),DROP(deny). - Port string
- Port.
- Protocol string
- Protocol. Valid values:
TCP,UDP. - Source
Cidr stringBlock - Source CIDR block.
- Description string
- Description. Maximum length is 100 bytes.
- Global
Accelerator stringAcl Rule Id - ACL rule ID.
- policy string
- Action. Valid values:
ACCEPT(allow),DROP(deny). - port string
- Port.
- protocol string
- Protocol. Valid values:
TCP,UDP. - source_
cidr_ stringblock - Source CIDR block.
- description string
- Description. Maximum length is 100 bytes.
- global_
accelerator_ stringacl_ rule_ id - ACL rule ID.
- policy String
- Action. Valid values:
ACCEPT(allow),DROP(deny). - port String
- Port.
- protocol String
- Protocol. Valid values:
TCP,UDP. - source
Cidr StringBlock - Source CIDR block.
- description String
- Description. Maximum length is 100 bytes.
- global
Accelerator StringAcl Rule Id - ACL rule ID.
- policy string
- Action. Valid values:
ACCEPT(allow),DROP(deny). - port string
- Port.
- protocol string
- Protocol. Valid values:
TCP,UDP. - source
Cidr stringBlock - Source CIDR block.
- description string
- Description. Maximum length is 100 bytes.
- global
Accelerator stringAcl Rule Id - ACL rule ID.
- policy str
- Action. Valid values:
ACCEPT(allow),DROP(deny). - port str
- Port.
- protocol str
- Protocol. Valid values:
TCP,UDP. - source_
cidr_ strblock - Source CIDR block.
- description str
- Description. Maximum length is 100 bytes.
- global_
accelerator_ stracl_ rule_ id - ACL rule ID.
- policy String
- Action. Valid values:
ACCEPT(allow),DROP(deny). - port String
- Port.
- protocol String
- Protocol. Valid values:
TCP,UDP. - source
Cidr StringBlock - Source CIDR block.
- description String
- Description. Maximum length is 100 bytes.
- global
Accelerator StringAcl Rule Id - ACL rule ID.
Ga2GlobalAcceleratorAclRuleSetTimeouts, Ga2GlobalAcceleratorAclRuleSetTimeoutsArgs
Import
GA2 ACL rule set can be imported using the composite id <global_accelerator_id>#<global_accelerator_acl_policy_id>, e.g.
$ pulumi import tencentcloud:index/ga2GlobalAcceleratorAclRuleSet:Ga2GlobalAcceleratorAclRuleSet example ga-cmbzp36q#sp-jz94sb2t
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