-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsg-master.tf
47 lines (42 loc) · 1.9 KB
/
sg-master.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
resource "aws_security_group" "eks-control-plane" {
name = "eksControlPlaneSecurityGroup"
description = "Cluster communication with worker nodes"
vpc_id = "${module.vpc.vpc_id}"
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
"Name" = "sg-control-plane-${var.project}-${var.env}"
"Enviroment" = "${var.env}"
"Project" = "${var.project}"
}
}
resource "aws_security_group_rule" "eks-control-plane-ingress-node-https" {
description = "Allow pods to communicate with the cluster API Server"
from_port = 443
protocol = "tcp"
security_group_id = "${aws_security_group.eks-control-plane.id}"
source_security_group_id = "${aws_security_group.eks-node.id}"
to_port = 443
type = "ingress"
}
resource "aws_security_group_rule" "eks-control-plane-ingress-workstation-https" {
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibilty in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
cidr_blocks = ["${local.workstation-external-cidr}"]
description = "Allow workstation to communicate with the cluster API Server"
from_port = 443
protocol = "tcp"
security_group_id = "${aws_security_group.eks-control-plane.id}"
to_port = 443
type = "ingress"
}