Skip to content

v2.10.0

Compare
Choose a tag to compare
@Binsabbar Binsabbar released this 15 Nov 11:37
· 22 commits to master since this release
04a0c04

v2.10.0:

New

  • network-sg: change input type to support ports range in var.network_security_groups.*.ports variable.

Fix

None

Breaking Changes

  • network-sg modules input for network_security_groups is updated. The subkey port is replaced with ports and it is now a map of two objects max and min.
network_security_groups = {
    "group_1" = {
      "rule_1" = {
        direction = "INGRESS"
        protocol  = "tcp"
        port      = { min : 9090, max : 9090 }
        ips       = ["192.168.100.12", "192.168.100.12"]
      }
    }
}
  • Currently there is no easy migration path for this change, since the terraform resource name is updated. However, destroying and recreating the rules is the best and fastest way to do it, however, it might impact your networks for few minutes. Alternatively, reference the new release in a new module definition, and migration your rules one by one.