home-iac/terraform/unifi/port_foward.tf
2026-05-24 02:51:15 -04:00

22 lines
No EOL
475 B
HCL

resource "unifi_port_forward" "rev_proxy_https" {
name = "UVC_HTTPs_ChooChoo"
enabled = true
port_forward_interface = "wan"
src_ip = "any"
dst_port = "443"
fwd_ip = "192.168.1.206"
fwd_port = "443"
protocol = "tcp"
log = true
}
resource "unifi_port_forward" "rev_proxy_http" {
name = "UVC_HTTP_ChooChoo"
enabled = true
port_forward_interface = "wan"
src_ip = "any"
dst_port = "80"
fwd_ip = "192.168.1.206"
fwd_port = "80"
protocol = "tcp"
}