terraform/non-lab/firewall.tf
Chris Cowley 88df812db9
Some checks failed
/ authentik (push) Failing after 2m7s
/ non-lab (push) Failing after 2m0s
Added Opnsense
2025-04-16 07:10:00 +00:00

28 lines
437 B
HCL

#resource "opnsense_firewall_nat" "http" {
# enabled = true
#
# interface = "wan"
# protocol = "TCP"
#
# destination = {
# port = "http"
# }
# target = {
# ip = "192.168.6.201"
# port = "80"
# }
#}
#resource "opnsense_firewall_nat" "https" {
# enabled = true
#
# interface = "wan"
# protocol = "TCP"
#
# destination = {
# port = "https"
# }
# target = {
# ip = "192.168.6.201"
# port = "443"
# }
#}