Skip to content

Commit 98a839f

Browse files
Fix: Addresses typo introduced in terraform-aws-modules#2125
The example extends the Security Group NTP IPV4 CIDR block, however, it's meant to update the IPV6 CIDR block
1 parent 62dddae commit 98a839f

File tree

1 file changed

+1
-1
lines changed
  • examples/eks_managed_node_group

1 file changed

+1
-1
lines changed

examples/eks_managed_node_group/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module "eks" {
9292
}
9393

9494
# Extend node-to-node security group rules
95-
node_security_group_ntp_ipv4_cidr_block = ["fd00:ec2::123/128"]
95+
node_security_group_ntp_ipv6_cidr_block = ["fd00:ec2::123/128"]
9696
node_security_group_additional_rules = {
9797
ingress_self_all = {
9898
description = "Node to node all ports/protocols"

0 commit comments

Comments
 (0)