terraform/non-lab/firewall.tf

29 lines
437 B
Terraform
Raw Permalink Normal View History

2025-04-15 12:01:56 +00:00
#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"
# }
#}