Skip to content

Releases: DNXLabs/terraform-aws-network

2.3.1

29 Jul 07:17
540956b
Compare
Choose a tag to compare

What's Changed

New Contributors

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

17 Jul 00:13
9fbda14
Compare
Choose a tag to compare

What's Changed

  • Pump terraform required version and remove experiments (continuing from #46) by @igorjs in #52

Full Changelog: 2.2.1...2.3.0

2.2.1

17 Jul 00:07
70c082c
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.2.0...2.2.1

2.2.0

12 May 23:35
f0e0736
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.0...2.2.0

2.1.0

13 Jul 03:53
49b281f
Compare
Choose a tag to compare
Merge pull request #47 from DNXLabs/fix/endpoint_try

fix endpoint allowed cidrs try

2.0.0

09 May 03:01
1643c7e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.9.1...2.0.0

1.8.5

31 Oct 06:12
206169c
Compare
Choose a tag to compare

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

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