Releases: DNXLabs/terraform-aws-network
Releases · DNXLabs/terraform-aws-network
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
1.8.1
1.7.3
terraform-docs: automated update action
1.8.0-compliance
What's Changed
- Add capability to change S3 endpoint policy by @lgothelipe in #26
- Making flexible naming by @adenot in #29
Full Changelog: 1.7.0-compliance...1.8.0-compliance
1.7.2
terraform-docs: automated update action
1.7.1
What's Changed
- Add capability to change S3 endpoint policy by @lgothelipe in #26
New Contributors
- @lgothelipe made their first contribution in #26
Full Changelog: 1.6.1...1.7.1
1.7.0-compliance
1.6.1-compliance
Custom version for compliance with stricter rules - merged from main 1.6.1