forked from ViktorUJ/cks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsg.tf
45 lines (39 loc) · 896 Bytes
/
sg.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
resource "aws_security_group" "servers" {
name = "${local.prefix}-k8-self-managment"
description = "${local.prefix}-k8-self-managment"
vpc_id = var.vpc_id
ingress {
from_port = "22"
to_port = "22"
protocol = "tcp"
cidr_blocks = var.k8s_master.cidrs
description = "ssh"
}
ingress {
from_port = "30000"
to_port = "32767"
protocol = "tcp"
cidr_blocks = var.k8s_master.cidrs
description = "NodePort k8s"
}
ingress {
from_port = 0
to_port = 0
protocol = "-1"
self = true
cidr_blocks = var.k8s_master.cidrs
}
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [data.aws_vpc.vpc.cidr_block]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = local.tags_all
}