diff --git a/CHANGELOG.md b/CHANGELOG.md index c0d02c1..ddd536a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -173,6 +173,13 @@ - configrules - description +* 1.16.1 -- 2022-07-15 + - fix updates to cloudtrail, config + +* 1.16.2 -- 2022-07-20 + - iam-general-policies + - add census ipv6 2610:20:2000::/38 + ## Version 2.x * 2.0.0 -- 2022-05-09 @@ -215,3 +222,7 @@ * 2.2.1 -- 2022-07-15 - fix updates to cloudtrail, config + +* 2.2.2 -- 2022-07-2 + - iam-general-policies + - add census ipv6 2610:20:2000::/38 diff --git a/common/version.tf b/common/version.tf index 0f38ccb..548c682 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "2.2.1" + _module_version = "2.2.2" } diff --git a/iam-general-policies/README.md b/iam-general-policies/README.md index f3886da..27d17b0 100644 --- a/iam-general-policies/README.md +++ b/iam-general-policies/README.md @@ -132,7 +132,7 @@ No modules. | [account\_id](#input\_account\_id) | AWS Account ID (default will pull from current user) | `string` | `""` | no | | [component\_tags](#input\_component\_tags) | Additional tags for Components (policy) | `map(map(string))` |
{
"policy": {}
}
| no | | [ipr\_additional\_cidr\_blocks](#input\_ipr\_additional\_cidr\_blocks) | Additional CIDR blocks for IP based API restrictions (default: none) | `list(string)` | `[]` | no | -| [ipr\_base\_cidr\_blocks](#input\_ipr\_base\_cidr\_blocks) | Base CIDR blocks for IP based API restrictions (default: census public network) | `list(string)` |
[
"148.129.0.0/16"
]
| no | +| [ipr\_base\_cidr\_blocks](#input\_ipr\_base\_cidr\_blocks) | Base CIDR blocks for IP based API restrictions (default: census public network) | `list(string)` |
[
"148.129.0.0/16",
"2610:20:2000::0/38"
]
| no | | [ipr\_nat\_gateway\_cidr\_blocks](#input\_ipr\_nat\_gateway\_cidr\_blocks) | NAT Gateway CIDR blocks for IP based API restrictions (default: none) | `list(string)` | `[]` | no | | [ipr\_vpc\_cidr\_blocks](#input\_ipr\_vpc\_cidr\_blocks) | VPC CIDR blocks for IP based API restrictions (default: none) | `list(string)` | `[]` | no | | [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component (efs, s3, ebs, kms, role, policy, security-group). This should be used primarily for common infrastructure things | `map(string)` | `{}` | no | diff --git a/iam-general-policies/variables.tf b/iam-general-policies/variables.tf index c5eca73..35538bf 100644 --- a/iam-general-policies/variables.tf +++ b/iam-general-policies/variables.tf @@ -25,7 +25,7 @@ variable "component_tags" { variable "ipr_base_cidr_blocks" { description = "Base CIDR blocks for IP based API restrictions (default: census public network)" type = list(string) - default = ["148.129.0.0/16"] + default = ["148.129.0.0/16", "2610:20:2000::0/38"] } variable "ipr_vpc_cidr_blocks" {