Expose MC server

It's just a local temp config for now, i'll do something proper later
This commit is contained in:
Jake Howard
2020-04-07 18:43:40 +01:00
parent 9de6c4a515
commit c634b87991
3 changed files with 16 additions and 0 deletions

View File

@ -50,3 +50,10 @@ resource "vultr_firewall_rule" "casey_matrix" {
from_port = 8448
network = "0.0.0.0/0"
}
resource "vultr_firewall_rule" "casey_mc" {
firewall_group_id = vultr_firewall_group.casey.id
protocol = "tcp"
from_port = 25566
network = "0.0.0.0/0"
}