-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnet.tf
51 lines (45 loc) · 1.42 KB
/
net.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
resource "vultr_network" "cluster" {
description = var.cluster_name
region_id = var.region
}
resource "vultr_firewall_group" "cluster" {
description = var.cluster_name
}
# Add a firewall rule to the group allowing API access
resource "vultr_firewall_rule" "api" {
firewall_group_id = vultr_firewall_group.cluster.id
cidr_block = "0.0.0.0/0"
protocol = "tcp"
from_port = 6443
to_port = 6443
}
# Add a firewall rule to the group allowing SSH access
resource "vultr_firewall_rule" "ssh" {
firewall_group_id = vultr_firewall_group.cluster.id
cidr_block = "0.0.0.0/0"
protocol = "tcp"
from_port = 22
to_port = 22
}
# Add a firewall rule to the group allowing HTTPS access
resource "vultr_firewall_rule" "https" {
firewall_group_id = vultr_firewall_group.cluster.id
cidr_block = "0.0.0.0/0"
protocol = "tcp"
from_port = 443
to_port = 443
}
# Add a firewall rule to the group allowing HTTP access.
resource "vultr_firewall_rule" "http" {
firewall_group_id = vultr_firewall_group.cluster.id
cidr_block = "0.0.0.0/0"
protocol = "tcp"
from_port = 80
to_port = 80
}
# Add a firewall rule to the group allowing ICMP.
resource "vultr_firewall_rule" "icmp" {
firewall_group_id = vultr_firewall_group.cluster.id
cidr_block = "0.0.0.0/0"
protocol = "icmp"
}