add mail firewall rules
This commit is contained in:
parent
15e1c5c018
commit
cd35d16f0f
@ -85,3 +85,34 @@ resource "hcloud_firewall" "Gitea_SSH" {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
resource "hcloud_firewall" "mail" {
|
||||||
|
name= "mail"
|
||||||
|
rule {
|
||||||
|
direction ="in"
|
||||||
|
protocol = "tcp"
|
||||||
|
port="25"
|
||||||
|
source_ips = [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
rule {
|
||||||
|
direction ="in"
|
||||||
|
protocol = "tcp"
|
||||||
|
port="993"
|
||||||
|
source_ips = [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
rule {
|
||||||
|
direction ="in"
|
||||||
|
protocol = "tcp"
|
||||||
|
port="465"
|
||||||
|
source_ips = [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -5,7 +5,11 @@ resource "hcloud_server" "HomeLab2" {
|
|||||||
server_type = var.server_type
|
server_type = var.server_type
|
||||||
location = var.location
|
location = var.location
|
||||||
ssh_keys = [hcloud_ssh_key.default.id]
|
ssh_keys = [hcloud_ssh_key.default.id]
|
||||||
firewall_ids = [hcloud_firewall.prod.id,hcloud_firewall.Gitea_SSH.id]
|
firewall_ids = [
|
||||||
|
hcloud_firewall.prod.id,
|
||||||
|
hcloud_firewall.Gitea_SSH.id,
|
||||||
|
hcloud_firewall.mail.id,
|
||||||
|
]
|
||||||
labels = {
|
labels = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user