Skip to content

Commit

Permalink
fix: support ssh remote sg
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiFleKs committed Jun 11, 2019
1 parent 354f4a9 commit 40e00b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/modules/eks/eks-worker-sg.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ resource "aws_security_group_rule" "eks-node-ingress-cluster-ssh" {
from_port = 22
protocol = "tcp"
security_group_id = "${aws_security_group.eks-node.id}"
source_security_group_id = "${var.var.ssh_remote_security_group_id}"
source_security_group_id = "${var.ssh_remote_security_group_id}"
to_port = 22
type = "ingress"
}
Expand Down

0 comments on commit 40e00b7

Please sign in to comment.