New firewall rule for gitea ssh

This commit is contained in:
shockrah 2024-08-03 15:57:27 -07:00
parent 8b143f6be0
commit 2a9f876b85

View File

@ -33,4 +33,13 @@ resource vultr_firewall_rule ssh_v4 {
port = "22"
}
resource vultr_firewall_rule gitea_ssh {
firewall_group_id = vultr_firewall_group.host.id
protocol = "tcp"
ip_type = "v4"
subnet = "0.0.0.0"
subnet_size = 0
port = "2222"
}