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

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.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 exampleResolverFirewallRuleGroup = new ResolverFirewallRuleGroup("exampleResolverFirewallRuleGroup");
var exampleResolverFirewallRuleGroupAssociation = new ResolverFirewallRuleGroupAssociation("exampleResolverFirewallRuleGroupAssociation", ResolverFirewallRuleGroupAssociationArgs.builder()
.firewallRuleGroupId(exampleResolverFirewallRuleGroup.id())
.priority(100)
.vpcId(aws_vpc.example().id())
.build());
}
}

Import

Route 53 Resolver DNS Firewall rule group associations can be imported using the Route 53 Resolver DNS Firewall rule group association ID, e.g.,

$ 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