Skip to content

Commit

Permalink
Fix protocol for icmpv6 SG rules
Browse files Browse the repository at this point in the history
  • Loading branch information
markmc committed Nov 25, 2019
1 parent 32824f6 commit 1b7abf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/data/aws/vpc/sg-master.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ resource "aws_security_group_rule" "master_ingress_icmp_v6" {
type = "ingress"
security_group_id = aws_security_group.master.id

protocol = "icmp"
protocol = "icmpv6"
ipv6_cidr_blocks = [data.aws_vpc.cluster_vpc.ipv6_cidr_block]
from_port = -1
to_port = -1
Expand Down
2 changes: 1 addition & 1 deletion data/data/aws/vpc/sg-worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "aws_security_group_rule" "worker_ingress_icmp_v6" {
type = "ingress"
security_group_id = aws_security_group.worker.id

protocol = "icmp"
protocol = "icmpv6"
ipv6_cidr_blocks = [data.aws_vpc.cluster_vpc.ipv6_cidr_block]
from_port = -1
to_port = -1
Expand Down

0 comments on commit 1b7abf2

Please sign in to comment.