Skip to content

Releases: DNXLabs/terraform-aws-network

1.8.4

24 May 03:51
4e7a167
Compare
Choose a tag to compare

What's Changed

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

24 May 01:44
64ee2a2
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.8.0-compliance...1.8.3-compliance

1.8.2

09 May 02:33
b79bb52
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.8.1...1.8.2

1.8.1

25 Apr 23:08
1764e03
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.7.1...1.8.1

1.7.3

21 Apr 04:57
Compare
Choose a tag to compare
1.7.3 Pre-release
Pre-release
terraform-docs: automated update action

1.8.0-compliance

18 Apr 02:28
c31a17a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.7.0-compliance...1.8.0-compliance

1.7.2

08 Apr 04:30
Compare
Choose a tag to compare
1.7.2 Pre-release
Pre-release
terraform-docs: automated update action

1.7.1

04 Apr 02:55
4c0981c
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.6.1...1.7.1

1.7.0-compliance

04 Mar 02:36
a2143ec
Compare
Choose a tag to compare

What's Changed

  • Add capabilities to dynamically Bring Your Own Elastic IP for Nat Gateway by @wvxavier in #23
  • DynamoDB Gateway Endpoint by @adenot in #25

New Contributors

Full Changelog: 1.6.0...1.7.0-compliance

1.6.1-compliance

03 Dec 00:16
Compare
Choose a tag to compare

Custom version for compliance with stricter rules - merged from main 1.6.1