forked from paulczar/terraform-kubernetes-openstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_securitygroups.tf
57 lines (54 loc) · 1.21 KB
/
_securitygroups.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
47
48
49
50
51
52
53
54
55
56
57
resource "openstack_compute_secgroup_v2" "kubernetes_controller" {
name = "${var.project}_kubernetes_controller"
description = "kubernetes Controller Security Group"
rule {
ip_protocol = "tcp"
from_port = "443"
to_port = "443"
cidr = "${var.whitelist_network}"
}
rule {
ip_protocol = "icmp"
from_port = "-1"
to_port = "-1"
cidr = "${var.whitelist_network}"
}
}
resource "openstack_compute_secgroup_v2" "kubernetes_compute" {
name = "${var.project}_kubernetes_compute"
description = "kubernetes Compute Security Group"
rule {
ip_protocol = "icmp"
from_port = "-1"
to_port = "-1"
cidr = "${var.whitelist_network}"
}
}
resource "openstack_compute_secgroup_v2" "kubernetes_base" {
name = "${var.project}_kubernetes_base"
description = "kubernetes Base Security Group"
rule {
ip_protocol = "tcp"
from_port = "22"
to_port = "22"
cidr = "${var.whitelist_network}"
}
rule {
ip_protocol = "icmp"
from_port = "-1"
to_port = "-1"
self = true
}
rule {
ip_protocol = "tcp"
from_port = "1"
to_port = "65535"
self = true
}
rule {
ip_protocol = "udp"
from_port = "1"
to_port = "65535"
self = true
}
}