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

tencentcloud.GaapSecurityRule

Explore with Pulumi AI

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

    Provides a resource to create a security policy rule.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const fooGaapProxy = new tencentcloud.GaapProxy("fooGaapProxy", {
        bandwidth: 10,
        concurrent: 2,
        accessRegion: "SouthChina",
        realserverRegion: "NorthChina",
    });
    const fooGaapSecurityPolicy = new tencentcloud.GaapSecurityPolicy("fooGaapSecurityPolicy", {
        proxyId: fooGaapProxy.gaapProxyId,
        action: "ACCEPT",
    });
    const fooGaapSecurityRule = new tencentcloud.GaapSecurityRule("fooGaapSecurityRule", {
        policyId: fooGaapSecurityPolicy.gaapSecurityPolicyId,
        cidrIp: "1.1.1.1",
        action: "ACCEPT",
        protocol: "TCP",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo_gaap_proxy = tencentcloud.GaapProxy("fooGaapProxy",
        bandwidth=10,
        concurrent=2,
        access_region="SouthChina",
        realserver_region="NorthChina")
    foo_gaap_security_policy = tencentcloud.GaapSecurityPolicy("fooGaapSecurityPolicy",
        proxy_id=foo_gaap_proxy.gaap_proxy_id,
        action="ACCEPT")
    foo_gaap_security_rule = tencentcloud.GaapSecurityRule("fooGaapSecurityRule",
        policy_id=foo_gaap_security_policy.gaap_security_policy_id,
        cidr_ip="1.1.1.1",
        action="ACCEPT",
        protocol="TCP")
    
    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 {
    		fooGaapProxy, err := tencentcloud.NewGaapProxy(ctx, "fooGaapProxy", &tencentcloud.GaapProxyArgs{
    			Bandwidth:        pulumi.Float64(10),
    			Concurrent:       pulumi.Float64(2),
    			AccessRegion:     pulumi.String("SouthChina"),
    			RealserverRegion: pulumi.String("NorthChina"),
    		})
    		if err != nil {
    			return err
    		}
    		fooGaapSecurityPolicy, err := tencentcloud.NewGaapSecurityPolicy(ctx, "fooGaapSecurityPolicy", &tencentcloud.GaapSecurityPolicyArgs{
    			ProxyId: fooGaapProxy.GaapProxyId,
    			Action:  pulumi.String("ACCEPT"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = tencentcloud.NewGaapSecurityRule(ctx, "fooGaapSecurityRule", &tencentcloud.GaapSecurityRuleArgs{
    			PolicyId: fooGaapSecurityPolicy.GaapSecurityPolicyId,
    			CidrIp:   pulumi.String("1.1.1.1"),
    			Action:   pulumi.String("ACCEPT"),
    			Protocol: pulumi.String("TCP"),
    		})
    		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 fooGaapProxy = new Tencentcloud.GaapProxy("fooGaapProxy", new()
        {
            Bandwidth = 10,
            Concurrent = 2,
            AccessRegion = "SouthChina",
            RealserverRegion = "NorthChina",
        });
    
        var fooGaapSecurityPolicy = new Tencentcloud.GaapSecurityPolicy("fooGaapSecurityPolicy", new()
        {
            ProxyId = fooGaapProxy.GaapProxyId,
            Action = "ACCEPT",
        });
    
        var fooGaapSecurityRule = new Tencentcloud.GaapSecurityRule("fooGaapSecurityRule", new()
        {
            PolicyId = fooGaapSecurityPolicy.GaapSecurityPolicyId,
            CidrIp = "1.1.1.1",
            Action = "ACCEPT",
            Protocol = "TCP",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.GaapProxy;
    import com.pulumi.tencentcloud.GaapProxyArgs;
    import com.pulumi.tencentcloud.GaapSecurityPolicy;
    import com.pulumi.tencentcloud.GaapSecurityPolicyArgs;
    import com.pulumi.tencentcloud.GaapSecurityRule;
    import com.pulumi.tencentcloud.GaapSecurityRuleArgs;
    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 fooGaapProxy = new GaapProxy("fooGaapProxy", GaapProxyArgs.builder()
                .bandwidth(10)
                .concurrent(2)
                .accessRegion("SouthChina")
                .realserverRegion("NorthChina")
                .build());
    
            var fooGaapSecurityPolicy = new GaapSecurityPolicy("fooGaapSecurityPolicy", GaapSecurityPolicyArgs.builder()
                .proxyId(fooGaapProxy.gaapProxyId())
                .action("ACCEPT")
                .build());
    
            var fooGaapSecurityRule = new GaapSecurityRule("fooGaapSecurityRule", GaapSecurityRuleArgs.builder()
                .policyId(fooGaapSecurityPolicy.gaapSecurityPolicyId())
                .cidrIp("1.1.1.1")
                .action("ACCEPT")
                .protocol("TCP")
                .build());
    
        }
    }
    
    resources:
      fooGaapProxy:
        type: tencentcloud:GaapProxy
        properties:
          bandwidth: 10
          concurrent: 2
          accessRegion: SouthChina
          realserverRegion: NorthChina
      fooGaapSecurityPolicy:
        type: tencentcloud:GaapSecurityPolicy
        properties:
          proxyId: ${fooGaapProxy.gaapProxyId}
          action: ACCEPT
      fooGaapSecurityRule:
        type: tencentcloud:GaapSecurityRule
        properties:
          policyId: ${fooGaapSecurityPolicy.gaapSecurityPolicyId}
          cidrIp: 1.1.1.1
          action: ACCEPT
          protocol: TCP
    

    Create GaapSecurityRule Resource

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

    Constructor syntax

    new GaapSecurityRule(name: string, args: GaapSecurityRuleArgs, opts?: CustomResourceOptions);
    @overload
    def GaapSecurityRule(resource_name: str,
                         args: GaapSecurityRuleArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaapSecurityRule(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         action: Optional[str] = None,
                         cidr_ip: Optional[str] = None,
                         policy_id: Optional[str] = None,
                         gaap_security_rule_id: Optional[str] = None,
                         name: Optional[str] = None,
                         port: Optional[str] = None,
                         protocol: Optional[str] = None)
    func NewGaapSecurityRule(ctx *Context, name string, args GaapSecurityRuleArgs, opts ...ResourceOption) (*GaapSecurityRule, error)
    public GaapSecurityRule(string name, GaapSecurityRuleArgs args, CustomResourceOptions? opts = null)
    public GaapSecurityRule(String name, GaapSecurityRuleArgs args)
    public GaapSecurityRule(String name, GaapSecurityRuleArgs args, CustomResourceOptions options)
    
    type: tencentcloud:GaapSecurityRule
    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 GaapSecurityRuleArgs
    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 GaapSecurityRuleArgs
    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 GaapSecurityRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaapSecurityRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaapSecurityRuleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Action string
    Policy of the rule. Valid value: ACCEPT and DROP.
    CidrIp string
    A network address block of the request source.
    PolicyId string
    ID of the security policy.
    GaapSecurityRuleId string
    ID of the resource.
    Name string
    Name of the security policy rule. Maximum length is 30.
    Port string
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    Protocol string
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    Action string
    Policy of the rule. Valid value: ACCEPT and DROP.
    CidrIp string
    A network address block of the request source.
    PolicyId string
    ID of the security policy.
    GaapSecurityRuleId string
    ID of the resource.
    Name string
    Name of the security policy rule. Maximum length is 30.
    Port string
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    Protocol string
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action String
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidrIp String
    A network address block of the request source.
    policyId String
    ID of the security policy.
    gaapSecurityRuleId String
    ID of the resource.
    name String
    Name of the security policy rule. Maximum length is 30.
    port String
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol String
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action string
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidrIp string
    A network address block of the request source.
    policyId string
    ID of the security policy.
    gaapSecurityRuleId string
    ID of the resource.
    name string
    Name of the security policy rule. Maximum length is 30.
    port string
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol string
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action str
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidr_ip str
    A network address block of the request source.
    policy_id str
    ID of the security policy.
    gaap_security_rule_id str
    ID of the resource.
    name str
    Name of the security policy rule. Maximum length is 30.
    port str
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol str
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action String
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidrIp String
    A network address block of the request source.
    policyId String
    ID of the security policy.
    gaapSecurityRuleId String
    ID of the resource.
    name String
    Name of the security policy rule. Maximum length is 30.
    port String
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol String
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaapSecurityRule 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GaapSecurityRule Resource

    Get an existing GaapSecurityRule 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?: GaapSecurityRuleState, opts?: CustomResourceOptions): GaapSecurityRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            cidr_ip: Optional[str] = None,
            gaap_security_rule_id: Optional[str] = None,
            name: Optional[str] = None,
            policy_id: Optional[str] = None,
            port: Optional[str] = None,
            protocol: Optional[str] = None) -> GaapSecurityRule
    func GetGaapSecurityRule(ctx *Context, name string, id IDInput, state *GaapSecurityRuleState, opts ...ResourceOption) (*GaapSecurityRule, error)
    public static GaapSecurityRule Get(string name, Input<string> id, GaapSecurityRuleState? state, CustomResourceOptions? opts = null)
    public static GaapSecurityRule get(String name, Output<String> id, GaapSecurityRuleState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:GaapSecurityRule    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:
    Action string
    Policy of the rule. Valid value: ACCEPT and DROP.
    CidrIp string
    A network address block of the request source.
    GaapSecurityRuleId string
    ID of the resource.
    Name string
    Name of the security policy rule. Maximum length is 30.
    PolicyId string
    ID of the security policy.
    Port string
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    Protocol string
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    Action string
    Policy of the rule. Valid value: ACCEPT and DROP.
    CidrIp string
    A network address block of the request source.
    GaapSecurityRuleId string
    ID of the resource.
    Name string
    Name of the security policy rule. Maximum length is 30.
    PolicyId string
    ID of the security policy.
    Port string
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    Protocol string
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action String
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidrIp String
    A network address block of the request source.
    gaapSecurityRuleId String
    ID of the resource.
    name String
    Name of the security policy rule. Maximum length is 30.
    policyId String
    ID of the security policy.
    port String
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol String
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action string
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidrIp string
    A network address block of the request source.
    gaapSecurityRuleId string
    ID of the resource.
    name string
    Name of the security policy rule. Maximum length is 30.
    policyId string
    ID of the security policy.
    port string
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol string
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action str
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidr_ip str
    A network address block of the request source.
    gaap_security_rule_id str
    ID of the resource.
    name str
    Name of the security policy rule. Maximum length is 30.
    policy_id str
    ID of the security policy.
    port str
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol str
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.
    action String
    Policy of the rule. Valid value: ACCEPT and DROP.
    cidrIp String
    A network address block of the request source.
    gaapSecurityRuleId String
    ID of the resource.
    name String
    Name of the security policy rule. Maximum length is 30.
    policyId String
    ID of the security policy.
    port String
    Target port. Default value is ALL. Valid examples: 80, 80,443 and 3306-20000.
    protocol String
    Protocol of the security policy rule. Default value is ALL. Valid value: TCP, UDP and ALL.

    Import

    GAAP security rule can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/gaapSecurityRule:GaapSecurityRule  tencentcloud_gaap_security_rule.foo sr-xxxxxxxx
    

    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