volcengine.rds_mysql.AllowlistAssociate
Explore with Pulumi AI
Provides a resource to manage rds mysql allowlist associate
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Ecs.Zones.Invoke();
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-vpc",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-test-subnet",
CidrBlock = "172.16.0.0/24",
ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
VpcId = fooVpc.Id,
});
var fooInstance = new Volcengine.Rds_mysql.Instance("fooInstance", new()
{
InstanceName = "acc-test-rds-mysql",
DbEngineVersion = "MySQL_5_7",
NodeSpec = "rds.mysql.1c2g",
PrimaryZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
SecondaryZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
StorageSpace = 80,
SubnetId = fooSubnet.Id,
LowerCaseTableNames = "1",
ChargeInfo = new Volcengine.Rds_mysql.Inputs.InstanceChargeInfoArgs
{
ChargeType = "PostPaid",
},
Parameters = new[]
{
new Volcengine.Rds_mysql.Inputs.InstanceParameterArgs
{
ParameterName = "auto_increment_increment",
ParameterValue = "2",
},
new Volcengine.Rds_mysql.Inputs.InstanceParameterArgs
{
ParameterName = "auto_increment_offset",
ParameterValue = "4",
},
},
});
var fooAllowlist = new Volcengine.Rds_mysql.Allowlist("fooAllowlist", new()
{
AllowListName = "acc-test-allowlist",
AllowListDesc = "acc-test",
AllowListType = "IPv4",
AllowLists = new[]
{
"192.168.0.0/24",
"192.168.1.0/24",
},
});
var fooAllowlistAssociate = new Volcengine.Rds_mysql.AllowlistAssociate("fooAllowlistAssociate", new()
{
AllowListId = fooAllowlist.Id,
InstanceId = fooInstance.Id,
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_mysql"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooZones, err := ecs.Zones(ctx, nil, nil)
if err != nil {
return err
}
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-vpc"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-test-subnet"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: *pulumi.String(fooZones.Zones[0].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooInstance, err := rds_mysql.NewInstance(ctx, "fooInstance", &rds_mysql.InstanceArgs{
InstanceName: pulumi.String("acc-test-rds-mysql"),
DbEngineVersion: pulumi.String("MySQL_5_7"),
NodeSpec: pulumi.String("rds.mysql.1c2g"),
PrimaryZoneId: *pulumi.String(fooZones.Zones[0].Id),
SecondaryZoneId: *pulumi.String(fooZones.Zones[0].Id),
StorageSpace: pulumi.Int(80),
SubnetId: fooSubnet.ID(),
LowerCaseTableNames: pulumi.String("1"),
ChargeInfo: &rds_mysql.InstanceChargeInfoArgs{
ChargeType: pulumi.String("PostPaid"),
},
Parameters: rds_mysql.InstanceParameterArray{
&rds_mysql.InstanceParameterArgs{
ParameterName: pulumi.String("auto_increment_increment"),
ParameterValue: pulumi.String("2"),
},
&rds_mysql.InstanceParameterArgs{
ParameterName: pulumi.String("auto_increment_offset"),
ParameterValue: pulumi.String("4"),
},
},
})
if err != nil {
return err
}
fooAllowlist, err := rds_mysql.NewAllowlist(ctx, "fooAllowlist", &rds_mysql.AllowlistArgs{
AllowListName: pulumi.String("acc-test-allowlist"),
AllowListDesc: pulumi.String("acc-test"),
AllowListType: pulumi.String("IPv4"),
AllowLists: pulumi.StringArray{
pulumi.String("192.168.0.0/24"),
pulumi.String("192.168.1.0/24"),
},
})
if err != nil {
return err
}
_, err = rds_mysql.NewAllowlistAssociate(ctx, "fooAllowlistAssociate", &rds_mysql.AllowlistAssociateArgs{
AllowListId: fooAllowlist.ID(),
InstanceId: fooInstance.ID(),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.ZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.rds_mysql.Instance;
import com.pulumi.volcengine.rds_mysql.InstanceArgs;
import com.pulumi.volcengine.rds_mysql.inputs.InstanceChargeInfoArgs;
import com.pulumi.volcengine.rds_mysql.inputs.InstanceParameterArgs;
import com.pulumi.volcengine.rds_mysql.Allowlist;
import com.pulumi.volcengine.rds_mysql.AllowlistArgs;
import com.pulumi.volcengine.rds_mysql.AllowlistAssociate;
import com.pulumi.volcengine.rds_mysql.AllowlistAssociateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var fooZones = EcsFunctions.Zones();
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-vpc")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-test-subnet")
.cidrBlock("172.16.0.0/24")
.zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
.vpcId(fooVpc.id())
.build());
var fooInstance = new Instance("fooInstance", InstanceArgs.builder()
.instanceName("acc-test-rds-mysql")
.dbEngineVersion("MySQL_5_7")
.nodeSpec("rds.mysql.1c2g")
.primaryZoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
.secondaryZoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
.storageSpace(80)
.subnetId(fooSubnet.id())
.lowerCaseTableNames("1")
.chargeInfo(InstanceChargeInfoArgs.builder()
.chargeType("PostPaid")
.build())
.parameters(
InstanceParameterArgs.builder()
.parameterName("auto_increment_increment")
.parameterValue("2")
.build(),
InstanceParameterArgs.builder()
.parameterName("auto_increment_offset")
.parameterValue("4")
.build())
.build());
var fooAllowlist = new Allowlist("fooAllowlist", AllowlistArgs.builder()
.allowListName("acc-test-allowlist")
.allowListDesc("acc-test")
.allowListType("IPv4")
.allowLists(
"192.168.0.0/24",
"192.168.1.0/24")
.build());
var fooAllowlistAssociate = new AllowlistAssociate("fooAllowlistAssociate", AllowlistAssociateArgs.builder()
.allowListId(fooAllowlist.id())
.instanceId(fooInstance.id())
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-vpc",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-test-subnet",
cidr_block="172.16.0.0/24",
zone_id=foo_zones.zones[0].id,
vpc_id=foo_vpc.id)
foo_instance = volcengine.rds_mysql.Instance("fooInstance",
instance_name="acc-test-rds-mysql",
db_engine_version="MySQL_5_7",
node_spec="rds.mysql.1c2g",
primary_zone_id=foo_zones.zones[0].id,
secondary_zone_id=foo_zones.zones[0].id,
storage_space=80,
subnet_id=foo_subnet.id,
lower_case_table_names="1",
charge_info=volcengine.rds_mysql.InstanceChargeInfoArgs(
charge_type="PostPaid",
),
parameters=[
volcengine.rds_mysql.InstanceParameterArgs(
parameter_name="auto_increment_increment",
parameter_value="2",
),
volcengine.rds_mysql.InstanceParameterArgs(
parameter_name="auto_increment_offset",
parameter_value="4",
),
])
foo_allowlist = volcengine.rds_mysql.Allowlist("fooAllowlist",
allow_list_name="acc-test-allowlist",
allow_list_desc="acc-test",
allow_list_type="IPv4",
allow_lists=[
"192.168.0.0/24",
"192.168.1.0/24",
])
foo_allowlist_associate = volcengine.rds_mysql.AllowlistAssociate("fooAllowlistAssociate",
allow_list_id=foo_allowlist.id,
instance_id=foo_instance.id)
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.Zones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-vpc",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-test-subnet",
cidrBlock: "172.16.0.0/24",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
vpcId: fooVpc.id,
});
const fooInstance = new volcengine.rds_mysql.Instance("fooInstance", {
instanceName: "acc-test-rds-mysql",
dbEngineVersion: "MySQL_5_7",
nodeSpec: "rds.mysql.1c2g",
primaryZoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
secondaryZoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
storageSpace: 80,
subnetId: fooSubnet.id,
lowerCaseTableNames: "1",
chargeInfo: {
chargeType: "PostPaid",
},
parameters: [
{
parameterName: "auto_increment_increment",
parameterValue: "2",
},
{
parameterName: "auto_increment_offset",
parameterValue: "4",
},
],
});
const fooAllowlist = new volcengine.rds_mysql.Allowlist("fooAllowlist", {
allowListName: "acc-test-allowlist",
allowListDesc: "acc-test",
allowListType: "IPv4",
allowLists: [
"192.168.0.0/24",
"192.168.1.0/24",
],
});
const fooAllowlistAssociate = new volcengine.rds_mysql.AllowlistAssociate("fooAllowlistAssociate", {
allowListId: fooAllowlist.id,
instanceId: fooInstance.id,
});
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-vpc
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-test-subnet
cidrBlock: 172.16.0.0/24
zoneId: ${fooZones.zones[0].id}
vpcId: ${fooVpc.id}
fooInstance:
type: volcengine:rds_mysql:Instance
properties:
instanceName: acc-test-rds-mysql
dbEngineVersion: MySQL_5_7
nodeSpec: rds.mysql.1c2g
primaryZoneId: ${fooZones.zones[0].id}
secondaryZoneId: ${fooZones.zones[0].id}
storageSpace: 80
subnetId: ${fooSubnet.id}
lowerCaseTableNames: '1'
chargeInfo:
chargeType: PostPaid
parameters:
- parameterName: auto_increment_increment
parameterValue: '2'
- parameterName: auto_increment_offset
parameterValue: '4'
fooAllowlist:
type: volcengine:rds_mysql:Allowlist
properties:
allowListName: acc-test-allowlist
allowListDesc: acc-test
allowListType: IPv4
allowLists:
- 192.168.0.0/24
- 192.168.1.0/24
fooAllowlistAssociate:
type: volcengine:rds_mysql:AllowlistAssociate
properties:
allowListId: ${fooAllowlist.id}
instanceId: ${fooInstance.id}
variables:
fooZones:
fn::invoke:
Function: volcengine:ecs:Zones
Arguments: {}
Create AllowlistAssociate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AllowlistAssociate(name: string, args: AllowlistAssociateArgs, opts?: CustomResourceOptions);
@overload
def AllowlistAssociate(resource_name: str,
args: AllowlistAssociateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AllowlistAssociate(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_list_id: Optional[str] = None,
instance_id: Optional[str] = None)
func NewAllowlistAssociate(ctx *Context, name string, args AllowlistAssociateArgs, opts ...ResourceOption) (*AllowlistAssociate, error)
public AllowlistAssociate(string name, AllowlistAssociateArgs args, CustomResourceOptions? opts = null)
public AllowlistAssociate(String name, AllowlistAssociateArgs args)
public AllowlistAssociate(String name, AllowlistAssociateArgs args, CustomResourceOptions options)
type: volcengine:rds_mysql:AllowlistAssociate
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 AllowlistAssociateArgs
- 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 AllowlistAssociateArgs
- 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 AllowlistAssociateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AllowlistAssociateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AllowlistAssociateArgs
- 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 allowlistAssociateResource = new Volcengine.Rds_mysql.AllowlistAssociate("allowlistAssociateResource", new()
{
AllowListId = "string",
InstanceId = "string",
});
example, err := rds_mysql.NewAllowlistAssociate(ctx, "allowlistAssociateResource", &rds_mysql.AllowlistAssociateArgs{
AllowListId: pulumi.String("string"),
InstanceId: pulumi.String("string"),
})
var allowlistAssociateResource = new AllowlistAssociate("allowlistAssociateResource", AllowlistAssociateArgs.builder()
.allowListId("string")
.instanceId("string")
.build());
allowlist_associate_resource = volcengine.rds_mysql.AllowlistAssociate("allowlistAssociateResource",
allow_list_id="string",
instance_id="string")
const allowlistAssociateResource = new volcengine.rds_mysql.AllowlistAssociate("allowlistAssociateResource", {
allowListId: "string",
instanceId: "string",
});
type: volcengine:rds_mysql:AllowlistAssociate
properties:
allowListId: string
instanceId: string
AllowlistAssociate Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AllowlistAssociate resource accepts the following input properties:
- Allow
List stringId - The id of the allow list.
- Instance
Id string - The id of the mysql instance.
- Allow
List stringId - The id of the allow list.
- Instance
Id string - The id of the mysql instance.
- allow
List StringId - The id of the allow list.
- instance
Id String - The id of the mysql instance.
- allow
List stringId - The id of the allow list.
- instance
Id string - The id of the mysql instance.
- allow_
list_ strid - The id of the allow list.
- instance_
id str - The id of the mysql instance.
- allow
List StringId - The id of the allow list.
- instance
Id String - The id of the mysql instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the AllowlistAssociate 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 AllowlistAssociate Resource
Get an existing AllowlistAssociate 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?: AllowlistAssociateState, opts?: CustomResourceOptions): AllowlistAssociate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_list_id: Optional[str] = None,
instance_id: Optional[str] = None) -> AllowlistAssociate
func GetAllowlistAssociate(ctx *Context, name string, id IDInput, state *AllowlistAssociateState, opts ...ResourceOption) (*AllowlistAssociate, error)
public static AllowlistAssociate Get(string name, Input<string> id, AllowlistAssociateState? state, CustomResourceOptions? opts = null)
public static AllowlistAssociate get(String name, Output<String> id, AllowlistAssociateState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Allow
List stringId - The id of the allow list.
- Instance
Id string - The id of the mysql instance.
- Allow
List stringId - The id of the allow list.
- Instance
Id string - The id of the mysql instance.
- allow
List StringId - The id of the allow list.
- instance
Id String - The id of the mysql instance.
- allow
List stringId - The id of the allow list.
- instance
Id string - The id of the mysql instance.
- allow_
list_ strid - The id of the allow list.
- instance_
id str - The id of the mysql instance.
- allow
List StringId - The id of the allow list.
- instance
Id String - The id of the mysql instance.
Import
RDS AllowList Associate can be imported using the instance id and allow list id, e.g.
$ pulumi import volcengine:rds_mysql/allowlistAssociate:AllowlistAssociate default rds-mysql-h441603c68aaa: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.