diff --git a/examples/from-private-vpc/main.tf b/examples/from-private-vpc/main.tf index 5c6262c..edeabd2 100644 --- a/examples/from-private-vpc/main.tf +++ b/examples/from-private-vpc/main.tf @@ -43,6 +43,14 @@ module "eks" { cidr_blocks = ["0.0.0.0/0"] ipv6_cidr_blocks = ["::/0"] } + ingress_self_all_to_all = { + description = "Node to node all traffic" + protocol = "-1" + from_port = 0 + to_port = 0 + type = "ingress" + self = true + } } } diff --git a/examples/from-scratch/main.tf b/examples/from-scratch/main.tf index 4923594..314ab69 100644 --- a/examples/from-scratch/main.tf +++ b/examples/from-scratch/main.tf @@ -87,6 +87,14 @@ module "eks" { cidr_blocks = ["0.0.0.0/0"] ipv6_cidr_blocks = ["::/0"] } + ingress_self_all_to_all = { + description = "Node to node all traffic" + protocol = "-1" + from_port = 0 + to_port = 0 + type = "ingress" + self = true + } } } diff --git a/examples/import-eks-cluster/eks-cluster/main.tf b/examples/import-eks-cluster/eks-cluster/main.tf index 31533ee..907a096 100644 --- a/examples/import-eks-cluster/eks-cluster/main.tf +++ b/examples/import-eks-cluster/eks-cluster/main.tf @@ -87,6 +87,14 @@ module "eks" { cidr_blocks = ["0.0.0.0/0"] ipv6_cidr_blocks = ["::/0"] } + ingress_self_all_to_all = { + description = "Node to node all traffic" + protocol = "-1" + from_port = 0 + to_port = 0 + type = "ingress" + self = true + } } }