-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tf
54 lines (43 loc) · 1.48 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
locals {
metadata = {
package = "terraform-aws-firewall"
version = trimspace(file("${path.module}/../../VERSION"))
module = basename(path.module)
name = var.vpc_id
}
module_tags = var.module_tags_enabled ? {
"module.terraform.io/package" = local.metadata.package
"module.terraform.io/version" = local.metadata.version
"module.terraform.io/name" = local.metadata.module
"module.terraform.io/full-name" = "${local.metadata.package}/${local.metadata.module}"
"module.terraform.io/instance" = local.metadata.name
} : {}
}
###################################################
# DNS Firewall
###################################################
resource "aws_route53_resolver_firewall_config" "this" {
resource_id = var.vpc_id
firewall_fail_open = var.fail_open_enabled ? "ENABLED" : "DISABLED"
}
###################################################
# Rule Group Associations for DNS Firewall
###################################################
resource "aws_route53_resolver_firewall_rule_group_association" "this" {
for_each = {
for rule_group in var.rule_groups :
rule_group.priority => rule_group
}
vpc_id = var.vpc_id
name = each.value.id
priority = each.key
firewall_rule_group_id = each.value.id
mutation_protection = each.value.mutation_protection_enabled ? "ENABLED" : "DISABLED"
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
}