Skip to content

Commit

Permalink
iam-general-policies: add ipv6 address for ip-restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 20, 2022
1 parent c729c46 commit 0aace86
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "2.2.1"
_module_version = "2.2.2"
}
2 changes: 1 addition & 1 deletion iam-general-policies/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ No modules.
| <a name="input_account_id"></a> [account\_id](#input\_account\_id) | AWS Account ID (default will pull from current user) | `string` | `""` | no |
| <a name="input_component_tags"></a> [component\_tags](#input\_component\_tags) | Additional tags for Components (policy) | `map(map(string))` | <pre>{<br> "policy": {}<br>}</pre> | no |
| <a name="input_ipr_additional_cidr_blocks"></a> [ipr\_additional\_cidr\_blocks](#input\_ipr\_additional\_cidr\_blocks) | Additional CIDR blocks for IP based API restrictions (default: none) | `list(string)` | `[]` | no |
| <a name="input_ipr_base_cidr_blocks"></a> [ipr\_base\_cidr\_blocks](#input\_ipr\_base\_cidr\_blocks) | Base CIDR blocks for IP based API restrictions (default: census public network) | `list(string)` | <pre>[<br> "148.129.0.0/16"<br>]</pre> | no |
| <a name="input_ipr_base_cidr_blocks"></a> [ipr\_base\_cidr\_blocks](#input\_ipr\_base\_cidr\_blocks) | Base CIDR blocks for IP based API restrictions (default: census public network) | `list(string)` | <pre>[<br> "148.129.0.0/16",<br> "2610:20:2000::0/38"<br>]</pre> | no |
| <a name="input_ipr_nat_gateway_cidr_blocks"></a> [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 |
| <a name="input_ipr_vpc_cidr_blocks"></a> [ipr\_vpc\_cidr\_blocks](#input\_ipr\_vpc\_cidr\_blocks) | VPC CIDR blocks for IP based API restrictions (default: none) | `list(string)` | `[]` | no |
| <a name="input_override_prefixes"></a> [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 |
Expand Down
2 changes: 1 addition & 1 deletion iam-general-policies/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 0aace86

Please sign in to comment.