Releases: DNXLabs/terraform-aws-network
Releases · DNXLabs/terraform-aws-network
2.3.1
What's Changed
- Adding creation of db Subnet Groups by @alandavid in #53
New Contributors
- @alandavid made their first contribution in #53
Full Changelog: 2.3.0...2.3.1
Introduces flags for creating additional db_subnet_groups for private and public subnets while maintaining default security settings.
2.3.0
2.2.1
2.2.0
2.1.0
Merge pull request #47 from DNXLabs/fix/endpoint_try fix endpoint allowed cidrs try
2.0.0
What's Changed
- DynamoDB Gateway Endpoint by @adenot in #25
- Making flexible naming by @adenot in #29
- Bugfix/disable nat by @adenot in #32
- Compliance rebased from master by @RaphaelMacedonio in #41
- Changes for compliance by @adenot in #17
- 🔧 Add vpc_cidr_summ variable to reduce the number of NACL rules used by @Renatovnctavares in #42
New Contributors
- @RaphaelMacedonio made their first contribution in #41
- @Renatovnctavares made their first contribution in #42
Full Changelog: 1.9.1...2.0.0
1.8.5
What's Changed
- add a bool that allows the default stateful rule to be on or off by @jeremiasroma in #33
- fix resource rule dependencies inside of network-firewall by @jeremiasroma in #34
Full Changelog: 1.8.4...1.8.5
1.8.4
What's Changed
- Update string to list for custom rules by @lgothelipe in #31
Full Changelog: 1.8.2...1.8.4
Breaking changes
From:
network.tf
module "network" {
source = "git::https://github.com/DNXLabs/terraform-aws-network.git?ref=1.8.3"
.
.
.
firewall_custom_rules = try(local.workspace.firewall.custom_rule, "")
}
one.yaml
firewall:
enabled: true
domain_list: [".google.com", ".github.com"]
custom_rule: "pass ssh $HOME_NET any -> any 22 (msg:\"Allow SSH 22\"; sid:172193; rev:1;)"
To:
network.tf
module "network" {
source = "git::https://github.com/DNXLabs/terraform-aws-network.git?ref=1.8.4"
.
.
.
firewall_custom_rules = try(local.workspace.firewall.custom_rules, [])
}
one.yaml
firewall:
enabled: true
domain_list: [".google.com", ".github.com"]
custom_rules:
- "pass tls $HOME_NET any -> any 443 (msg:\"Allow HTTPS 443\"; sid:172192; rev:1;)"
- "pass ssh $HOME_NET any -> any 22 (msg:\"Allow SSH 22\"; sid:172193; rev:1;)"
1.8.3-compliance
What's Changed
Full Changelog: 1.8.0-compliance...1.8.3-compliance
1.8.2
What's Changed
- Fix default ingress rule Network Firewall by @lgothelipe in #30
Full Changelog: 1.8.1...1.8.2