Init some skeleton nebula stuff

This commit is contained in:
Jake Howard
2021-01-25 21:53:04 +00:00
parent 0ecd884a9a
commit a44a79031a
9 changed files with 93 additions and 0 deletions

View File

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