ResolverFirewallRuleGroupAssociationArgs

data class ResolverFirewallRuleGroupAssociationArgs(val firewallRuleGroupId: Output<String>? = null, val mutationProtection: Output<String>? = null, val name: Output<String>? = null, val priority: Output<Int>? = null, val tags: Output<Map<String, String>>? = null, val vpcId: Output<String>? = null) : ConvertibleToJava<ResolverFirewallRuleGroupAssociationArgs>

Provides a Route 53 Resolver DNS Firewall rule group association resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53.ResolverFirewallRuleGroup("example", {name: "example"});
const exampleResolverFirewallRuleGroupAssociation = new aws.route53.ResolverFirewallRuleGroupAssociation("example", {
name: "example",
firewallRuleGroupId: example.id,
priority: 100,
vpcId: exampleAwsVpc.id,
});
import pulumi
import pulumi_aws as aws
example = aws.route53.ResolverFirewallRuleGroup("example", name="example")
example_resolver_firewall_rule_group_association = aws.route53.ResolverFirewallRuleGroupAssociation("example",
name="example",
firewall_rule_group_id=example.id,
priority=100,
vpc_id=example_aws_vpc["id"])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Route53.ResolverFirewallRuleGroup("example", new()
{
Name = "example",
});
var exampleResolverFirewallRuleGroupAssociation = new Aws.Route53.ResolverFirewallRuleGroupAssociation("example", new()
{
Name = "example",
FirewallRuleGroupId = example.Id,
Priority = 100,
VpcId = exampleAwsVpc.Id,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := route53.NewResolverFirewallRuleGroup(ctx, "example", &route53.ResolverFirewallRuleGroupArgs{
Name: pulumi.String("example"),
})
if err != nil {
return err
}
_, err = route53.NewResolverFirewallRuleGroupAssociation(ctx, "example", &route53.ResolverFirewallRuleGroupAssociationArgs{
Name: pulumi.String("example"),
FirewallRuleGroupId: example.ID(),
Priority: pulumi.Int(100),
VpcId: pulumi.Any(exampleAwsVpc.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.aws.route53.ResolverFirewallRuleGroup;
import com.pulumi.aws.route53.ResolverFirewallRuleGroupArgs;
import com.pulumi.aws.route53.ResolverFirewallRuleGroupAssociation;
import com.pulumi.aws.route53.ResolverFirewallRuleGroupAssociationArgs;
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 ResolverFirewallRuleGroup("example", ResolverFirewallRuleGroupArgs.builder()
.name("example")
.build());
var exampleResolverFirewallRuleGroupAssociation = new ResolverFirewallRuleGroupAssociation("exampleResolverFirewallRuleGroupAssociation", ResolverFirewallRuleGroupAssociationArgs.builder()
.name("example")
.firewallRuleGroupId(example.id())
.priority(100)
.vpcId(exampleAwsVpc.id())
.build());
}
}
resources:
example:
type: aws:route53:ResolverFirewallRuleGroup
properties:
name: example
exampleResolverFirewallRuleGroupAssociation:
type: aws:route53:ResolverFirewallRuleGroupAssociation
name: example
properties:
name: example
firewallRuleGroupId: ${example.id}
priority: 100
vpcId: ${exampleAwsVpc.id}

Import

Using pulumi import, import Route 53 Resolver DNS Firewall rule group associations using the Route 53 Resolver DNS Firewall rule group association ID. For example:

$ pulumi import aws:route53/resolverFirewallRuleGroupAssociation:ResolverFirewallRuleGroupAssociation example rslvr-frgassoc-0123456789abcdef

Constructors

Link copied to clipboard
constructor(firewallRuleGroupId: Output<String>? = null, mutationProtection: Output<String>? = null, name: Output<String>? = null, priority: Output<Int>? = null, tags: Output<Map<String, String>>? = null, vpcId: Output<String>? = null)

Properties

Link copied to clipboard
val firewallRuleGroupId: Output<String>? = null

The unique identifier of the firewall rule group.

Link copied to clipboard
val mutationProtection: Output<String>? = null

If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections. Valid values: ENABLED, DISABLED.

Link copied to clipboard
val name: Output<String>? = null

A name that lets you identify the rule group association, to manage and use it.

Link copied to clipboard
val priority: Output<Int>? = null

The setting that determines the processing order of the rule group among the rule groups that you associate with the specified VPC. DNS Firewall filters VPC traffic starting from the rule group with the lowest numeric priority setting.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val vpcId: Output<String>? = null

The unique identifier of the VPC that you want to associate with the rule group.

Functions

Link copied to clipboard
open override fun toJava(): ResolverFirewallRuleGroupAssociationArgs