1. Packages
  2. Volcengine
  3. API Docs
  4. rds_mysql
  5. Allowlist
Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine

volcengine.rds_mysql.Allowlist

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine

    Provides a resource to manage rds mysql allowlist

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const foo = new volcengine.rds_mysql.Allowlist("foo", {
        allowListDesc: "acc-test",
        allowListName: "acc-test-allowlist",
        allowListType: "IPv4",
        securityGroupBindInfos: [
            {
                bindMode: "IngressDirectionIp",
                securityGroupId: "sg-13fd7wyduxekg3n6nu5t9fhj7",
            },
            {
                bindMode: "IngressDirectionIp",
                securityGroupId: "sg-mjoa9qfyzg1s5smt1a6dmc1l",
            },
        ],
        userAllowLists: [
            "192.168.0.0/24",
            "192.168.1.0/24",
        ],
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.rds_mysql.Allowlist("foo",
        allow_list_desc="acc-test",
        allow_list_name="acc-test-allowlist",
        allow_list_type="IPv4",
        security_group_bind_infos=[
            volcengine.rds_mysql.AllowlistSecurityGroupBindInfoArgs(
                bind_mode="IngressDirectionIp",
                security_group_id="sg-13fd7wyduxekg3n6nu5t9fhj7",
            ),
            volcengine.rds_mysql.AllowlistSecurityGroupBindInfoArgs(
                bind_mode="IngressDirectionIp",
                security_group_id="sg-mjoa9qfyzg1s5smt1a6dmc1l",
            ),
        ],
        user_allow_lists=[
            "192.168.0.0/24",
            "192.168.1.0/24",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_mysql"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rds_mysql.NewAllowlist(ctx, "foo", &rds_mysql.AllowlistArgs{
    			AllowListDesc: pulumi.String("acc-test"),
    			AllowListName: pulumi.String("acc-test-allowlist"),
    			AllowListType: pulumi.String("IPv4"),
    			SecurityGroupBindInfos: rds_mysql.AllowlistSecurityGroupBindInfoArray{
    				&rds_mysql.AllowlistSecurityGroupBindInfoArgs{
    					BindMode:        pulumi.String("IngressDirectionIp"),
    					SecurityGroupId: pulumi.String("sg-13fd7wyduxekg3n6nu5t9fhj7"),
    				},
    				&rds_mysql.AllowlistSecurityGroupBindInfoArgs{
    					BindMode:        pulumi.String("IngressDirectionIp"),
    					SecurityGroupId: pulumi.String("sg-mjoa9qfyzg1s5smt1a6dmc1l"),
    				},
    			},
    			UserAllowLists: pulumi.StringArray{
    				pulumi.String("192.168.0.0/24"),
    				pulumi.String("192.168.1.0/24"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Volcengine.Rds_mysql.Allowlist("foo", new()
        {
            AllowListDesc = "acc-test",
            AllowListName = "acc-test-allowlist",
            AllowListType = "IPv4",
            SecurityGroupBindInfos = new[]
            {
                new Volcengine.Rds_mysql.Inputs.AllowlistSecurityGroupBindInfoArgs
                {
                    BindMode = "IngressDirectionIp",
                    SecurityGroupId = "sg-13fd7wyduxekg3n6nu5t9fhj7",
                },
                new Volcengine.Rds_mysql.Inputs.AllowlistSecurityGroupBindInfoArgs
                {
                    BindMode = "IngressDirectionIp",
                    SecurityGroupId = "sg-mjoa9qfyzg1s5smt1a6dmc1l",
                },
            },
            UserAllowLists = new[]
            {
                "192.168.0.0/24",
                "192.168.1.0/24",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.rds_mysql.Allowlist;
    import com.pulumi.volcengine.rds_mysql.AllowlistArgs;
    import com.pulumi.volcengine.rds_mysql.inputs.AllowlistSecurityGroupBindInfoArgs;
    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 foo = new Allowlist("foo", AllowlistArgs.builder()        
                .allowListDesc("acc-test")
                .allowListName("acc-test-allowlist")
                .allowListType("IPv4")
                .securityGroupBindInfos(            
                    AllowlistSecurityGroupBindInfoArgs.builder()
                        .bindMode("IngressDirectionIp")
                        .securityGroupId("sg-13fd7wyduxekg3n6nu5t9fhj7")
                        .build(),
                    AllowlistSecurityGroupBindInfoArgs.builder()
                        .bindMode("IngressDirectionIp")
                        .securityGroupId("sg-mjoa9qfyzg1s5smt1a6dmc1l")
                        .build())
                .userAllowLists(            
                    "192.168.0.0/24",
                    "192.168.1.0/24")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: volcengine:rds_mysql:Allowlist
        properties:
          allowListDesc: acc-test
          allowListName: acc-test-allowlist
          allowListType: IPv4
          securityGroupBindInfos:
            - bindMode: IngressDirectionIp
              securityGroupId: sg-13fd7wyduxekg3n6nu5t9fhj7
            - bindMode: IngressDirectionIp
              securityGroupId: sg-mjoa9qfyzg1s5smt1a6dmc1l
          userAllowLists:
            - 192.168.0.0/24
            - 192.168.1.0/24
    

    Create Allowlist Resource

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

    Constructor syntax

    new Allowlist(name: string, args: AllowlistArgs, opts?: CustomResourceOptions);
    @overload
    def Allowlist(resource_name: str,
                  args: AllowlistArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Allowlist(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  allow_list_name: Optional[str] = None,
                  allow_list_category: Optional[str] = None,
                  allow_list_desc: Optional[str] = None,
                  allow_list_type: Optional[str] = None,
                  allow_lists: Optional[Sequence[str]] = None,
                  security_group_bind_infos: Optional[Sequence[AllowlistSecurityGroupBindInfoArgs]] = None,
                  security_group_ids: Optional[Sequence[str]] = None,
                  user_allow_lists: Optional[Sequence[str]] = None)
    func NewAllowlist(ctx *Context, name string, args AllowlistArgs, opts ...ResourceOption) (*Allowlist, error)
    public Allowlist(string name, AllowlistArgs args, CustomResourceOptions? opts = null)
    public Allowlist(String name, AllowlistArgs args)
    public Allowlist(String name, AllowlistArgs args, CustomResourceOptions options)
    
    type: volcengine:rds_mysql:Allowlist
    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 AllowlistArgs
    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 AllowlistArgs
    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 AllowlistArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AllowlistArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AllowlistArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var allowlistResource = new Volcengine.Rds_mysql.Allowlist("allowlistResource", new()
    {
        AllowListName = "string",
        AllowListCategory = "string",
        AllowListDesc = "string",
        AllowListType = "string",
        AllowLists = new[]
        {
            "string",
        },
        SecurityGroupBindInfos = new[]
        {
            new Volcengine.Rds_mysql.Inputs.AllowlistSecurityGroupBindInfoArgs
            {
                BindMode = "string",
                SecurityGroupId = "string",
            },
        },
        SecurityGroupIds = new[]
        {
            "string",
        },
        UserAllowLists = new[]
        {
            "string",
        },
    });
    
    example, err := rds_mysql.NewAllowlist(ctx, "allowlistResource", &rds_mysql.AllowlistArgs{
    	AllowListName:     pulumi.String("string"),
    	AllowListCategory: pulumi.String("string"),
    	AllowListDesc:     pulumi.String("string"),
    	AllowListType:     pulumi.String("string"),
    	AllowLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SecurityGroupBindInfos: rds_mysql.AllowlistSecurityGroupBindInfoArray{
    		&rds_mysql.AllowlistSecurityGroupBindInfoArgs{
    			BindMode:        pulumi.String("string"),
    			SecurityGroupId: pulumi.String("string"),
    		},
    	},
    	SecurityGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UserAllowLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var allowlistResource = new com.pulumi.volcengine.rds_mysql.Allowlist("allowlistResource", com.pulumi.volcengine.rds_mysql.AllowlistArgs.builder()
        .allowListName("string")
        .allowListCategory("string")
        .allowListDesc("string")
        .allowListType("string")
        .allowLists("string")
        .securityGroupBindInfos(AllowlistSecurityGroupBindInfoArgs.builder()
            .bindMode("string")
            .securityGroupId("string")
            .build())
        .securityGroupIds("string")
        .userAllowLists("string")
        .build());
    
    allowlist_resource = volcengine.rds_mysql.Allowlist("allowlistResource",
        allow_list_name="string",
        allow_list_category="string",
        allow_list_desc="string",
        allow_list_type="string",
        allow_lists=["string"],
        security_group_bind_infos=[{
            "bind_mode": "string",
            "security_group_id": "string",
        }],
        security_group_ids=["string"],
        user_allow_lists=["string"])
    
    const allowlistResource = new volcengine.rds_mysql.Allowlist("allowlistResource", {
        allowListName: "string",
        allowListCategory: "string",
        allowListDesc: "string",
        allowListType: "string",
        allowLists: ["string"],
        securityGroupBindInfos: [{
            bindMode: "string",
            securityGroupId: "string",
        }],
        securityGroupIds: ["string"],
        userAllowLists: ["string"],
    });
    
    type: volcengine:rds_mysql:Allowlist
    properties:
        allowListCategory: string
        allowListDesc: string
        allowListName: string
        allowListType: string
        allowLists:
            - string
        securityGroupBindInfos:
            - bindMode: string
              securityGroupId: string
        securityGroupIds:
            - string
        userAllowLists:
            - string
    

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

    AllowListName string
    The name of the allow list.
    AllowListCategory string
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    AllowListDesc string
    The description of the allow list.
    AllowListType string
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    AllowLists List<string>
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    SecurityGroupBindInfos List<AllowlistSecurityGroupBindInfo>
    Whitelist information for the associated security group.
    SecurityGroupIds List<string>
    The security group ids of the allow list.
    UserAllowLists List<string>
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    AllowListName string
    The name of the allow list.
    AllowListCategory string
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    AllowListDesc string
    The description of the allow list.
    AllowListType string
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    AllowLists []string
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    SecurityGroupBindInfos []AllowlistSecurityGroupBindInfoArgs
    Whitelist information for the associated security group.
    SecurityGroupIds []string
    The security group ids of the allow list.
    UserAllowLists []string
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allowListName String
    The name of the allow list.
    allowListCategory String
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allowListDesc String
    The description of the allow list.
    allowListType String
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allowLists List<String>
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    securityGroupBindInfos List<AllowlistSecurityGroupBindInfo>
    Whitelist information for the associated security group.
    securityGroupIds List<String>
    The security group ids of the allow list.
    userAllowLists List<String>
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allowListName string
    The name of the allow list.
    allowListCategory string
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allowListDesc string
    The description of the allow list.
    allowListType string
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allowLists string[]
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    securityGroupBindInfos AllowlistSecurityGroupBindInfo[]
    Whitelist information for the associated security group.
    securityGroupIds string[]
    The security group ids of the allow list.
    userAllowLists string[]
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allow_list_name str
    The name of the allow list.
    allow_list_category str
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allow_list_desc str
    The description of the allow list.
    allow_list_type str
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allow_lists Sequence[str]
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    security_group_bind_infos Sequence[AllowlistSecurityGroupBindInfoArgs]
    Whitelist information for the associated security group.
    security_group_ids Sequence[str]
    The security group ids of the allow list.
    user_allow_lists Sequence[str]
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allowListName String
    The name of the allow list.
    allowListCategory String
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allowListDesc String
    The description of the allow list.
    allowListType String
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allowLists List<String>
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    securityGroupBindInfos List<Property Map>
    Whitelist information for the associated security group.
    securityGroupIds List<String>
    The security group ids of the allow list.
    userAllowLists List<String>
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.

    Outputs

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

    AllowListId string
    The id of the allow list.
    Id string
    The provider-assigned unique ID for this managed resource.
    AllowListId string
    The id of the allow list.
    Id string
    The provider-assigned unique ID for this managed resource.
    allowListId String
    The id of the allow list.
    id String
    The provider-assigned unique ID for this managed resource.
    allowListId string
    The id of the allow list.
    id string
    The provider-assigned unique ID for this managed resource.
    allow_list_id str
    The id of the allow list.
    id str
    The provider-assigned unique ID for this managed resource.
    allowListId String
    The id of the allow list.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Allowlist Resource

    Get an existing Allowlist 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?: AllowlistState, opts?: CustomResourceOptions): Allowlist
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_list_category: Optional[str] = None,
            allow_list_desc: Optional[str] = None,
            allow_list_id: Optional[str] = None,
            allow_list_name: Optional[str] = None,
            allow_list_type: Optional[str] = None,
            allow_lists: Optional[Sequence[str]] = None,
            security_group_bind_infos: Optional[Sequence[AllowlistSecurityGroupBindInfoArgs]] = None,
            security_group_ids: Optional[Sequence[str]] = None,
            user_allow_lists: Optional[Sequence[str]] = None) -> Allowlist
    func GetAllowlist(ctx *Context, name string, id IDInput, state *AllowlistState, opts ...ResourceOption) (*Allowlist, error)
    public static Allowlist Get(string name, Input<string> id, AllowlistState? state, CustomResourceOptions? opts = null)
    public static Allowlist get(String name, Output<String> id, AllowlistState state, CustomResourceOptions options)
    resources:  _:    type: volcengine:rds_mysql:Allowlist    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:
    AllowListCategory string
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    AllowListDesc string
    The description of the allow list.
    AllowListId string
    The id of the allow list.
    AllowListName string
    The name of the allow list.
    AllowListType string
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    AllowLists List<string>
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    SecurityGroupBindInfos List<AllowlistSecurityGroupBindInfo>
    Whitelist information for the associated security group.
    SecurityGroupIds List<string>
    The security group ids of the allow list.
    UserAllowLists List<string>
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    AllowListCategory string
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    AllowListDesc string
    The description of the allow list.
    AllowListId string
    The id of the allow list.
    AllowListName string
    The name of the allow list.
    AllowListType string
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    AllowLists []string
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    SecurityGroupBindInfos []AllowlistSecurityGroupBindInfoArgs
    Whitelist information for the associated security group.
    SecurityGroupIds []string
    The security group ids of the allow list.
    UserAllowLists []string
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allowListCategory String
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allowListDesc String
    The description of the allow list.
    allowListId String
    The id of the allow list.
    allowListName String
    The name of the allow list.
    allowListType String
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allowLists List<String>
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    securityGroupBindInfos List<AllowlistSecurityGroupBindInfo>
    Whitelist information for the associated security group.
    securityGroupIds List<String>
    The security group ids of the allow list.
    userAllowLists List<String>
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allowListCategory string
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allowListDesc string
    The description of the allow list.
    allowListId string
    The id of the allow list.
    allowListName string
    The name of the allow list.
    allowListType string
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allowLists string[]
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    securityGroupBindInfos AllowlistSecurityGroupBindInfo[]
    Whitelist information for the associated security group.
    securityGroupIds string[]
    The security group ids of the allow list.
    userAllowLists string[]
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allow_list_category str
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allow_list_desc str
    The description of the allow list.
    allow_list_id str
    The id of the allow list.
    allow_list_name str
    The name of the allow list.
    allow_list_type str
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allow_lists Sequence[str]
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    security_group_bind_infos Sequence[AllowlistSecurityGroupBindInfoArgs]
    Whitelist information for the associated security group.
    security_group_ids Sequence[str]
    The security group ids of the allow list.
    user_allow_lists Sequence[str]
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.
    allowListCategory String
    White list category. Values: Ordinary: Ordinary white list. Default: Default white list. Description: When this parameter is used as a request parameter, the default value is Ordinary.
    allowListDesc String
    The description of the allow list.
    allowListId String
    The id of the allow list.
    allowListName String
    The name of the allow list.
    allowListType String
    The type of IP address in the whitelist. Currently only IPv4 addresses are supported.
    allowLists List<String>
    Enter an IP address or a range of IP addresses in CIDR format. Please note that if you want to use security group - related parameters, do not use this field. Instead, use the user_allow_list.
    securityGroupBindInfos List<Property Map>
    Whitelist information for the associated security group.
    securityGroupIds List<String>
    The security group ids of the allow list.
    userAllowLists List<String>
    IP addresses outside the security group that need to be added to the whitelist. IP addresses or IP address segments in CIDR format can be entered. Note: This field cannot be used simultaneously with AllowList.

    Supporting Types

    AllowlistSecurityGroupBindInfo, AllowlistSecurityGroupBindInfoArgs

    BindMode string
    The schema for the associated security group. IngressDirectionIp: Incoming Direction IP. AssociateEcsIp: Associate ECSIP. explain: In the CreateAllowList interface, SecurityGroupBindInfoObject BindMode and SecurityGroupId fields are required.
    SecurityGroupId string
    The security group id of the allow list.
    BindMode string
    The schema for the associated security group. IngressDirectionIp: Incoming Direction IP. AssociateEcsIp: Associate ECSIP. explain: In the CreateAllowList interface, SecurityGroupBindInfoObject BindMode and SecurityGroupId fields are required.
    SecurityGroupId string
    The security group id of the allow list.
    bindMode String
    The schema for the associated security group. IngressDirectionIp: Incoming Direction IP. AssociateEcsIp: Associate ECSIP. explain: In the CreateAllowList interface, SecurityGroupBindInfoObject BindMode and SecurityGroupId fields are required.
    securityGroupId String
    The security group id of the allow list.
    bindMode string
    The schema for the associated security group. IngressDirectionIp: Incoming Direction IP. AssociateEcsIp: Associate ECSIP. explain: In the CreateAllowList interface, SecurityGroupBindInfoObject BindMode and SecurityGroupId fields are required.
    securityGroupId string
    The security group id of the allow list.
    bind_mode str
    The schema for the associated security group. IngressDirectionIp: Incoming Direction IP. AssociateEcsIp: Associate ECSIP. explain: In the CreateAllowList interface, SecurityGroupBindInfoObject BindMode and SecurityGroupId fields are required.
    security_group_id str
    The security group id of the allow list.
    bindMode String
    The schema for the associated security group. IngressDirectionIp: Incoming Direction IP. AssociateEcsIp: Associate ECSIP. explain: In the CreateAllowList interface, SecurityGroupBindInfoObject BindMode and SecurityGroupId fields are required.
    securityGroupId String
    The security group id of the allow list.

    Import

    RDS AllowList can be imported using the id, e.g.

    $ pulumi import volcengine:rds_mysql/allowlist:Allowlist default acl-d1fd76693bd54e658912e7337d5b****
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine