v7.3.0
·
443 commits
to main
since this release
7.3.0 (2023-06-14)
Features (#542) (6718c01)
-
Added the ability to to pass multiple network CIDRs to the module. This feature means the input variable
network_cidrhas been renamed tonetwork_cidrsand changed from a string to a list type. If you are updating to this version of the module from a previous version, you now need to change the way you pass values to this variable. For example:- Versions < 7.3.0:
network_cidr = "10.0.0.0/8" - Versions >= 7.3.0:
network_cidrs = ["10.0.0.0/8"]
- Versions < 7.3.0: