fix: add port for proxy
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Kasper Juul Hermansen 2025-01-12 14:02:33 +01:00
parent 539f1ebb35
commit 57fd18ba04
Signed by: kjuulh
SSH Key Fingerprint: SHA256:RjXh0p7U6opxnfd3ga/Y9TCo18FYlHFdSpRIV72S/QM
2 changed files with 6 additions and 0 deletions

View File

@ -46,6 +46,7 @@ resource "null_resource" "node_caddy_template" {
user = "root"
private_key = var.ssh_private
host = var.proxy_ip
port = var.proxy_port
}
provisioner "file" {

View File

@ -13,6 +13,11 @@ variable "proxy_ip" {
default = "10.0.9.0"
}
variable "proxy_port" {
description = "which port to use for the caddy file"
default = 222
}
variable "proxy_location" {
description = "which where to place the files upstream"
default = "/root/wireguard/nodes"