Compare commits
No commits in common. "main" and "v0.5.3" have entirely different histories.
30
CHANGELOG.md
30
CHANGELOG.md
@ -6,36 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.5.10] - 2025-01-13
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- make sure to not brick my reverse proxy
|
|
||||||
|
|
||||||
## [0.5.8] - 2025-01-12
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- should've been equal
|
|
||||||
|
|
||||||
## [0.5.7] - 2025-01-12
|
|
||||||
|
|
||||||
### Added
|
|
||||||
- add trigger
|
|
||||||
|
|
||||||
## [0.5.6] - 2025-01-12
|
|
||||||
|
|
||||||
### Added
|
|
||||||
- remove range from ip
|
|
||||||
|
|
||||||
## [0.5.5] - 2025-01-12
|
|
||||||
|
|
||||||
### Other
|
|
||||||
- add caddy extension
|
|
||||||
|
|
||||||
## [0.5.4] - 2025-01-12
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- add port for proxy
|
|
||||||
|
|
||||||
## [0.5.3] - 2025-01-12
|
## [0.5.3] - 2025-01-12
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@${name}-node ${replace(name, "_", "-")}.nodes.i.kjuulh.io
|
@${name}-node ${replace(name, "_", "-")}.nodes.i.kjuulh.io
|
||||||
handle @${name}-node {
|
handle ${name}-node {
|
||||||
reverse_proxy ${split("/", ip)[0]}:80
|
reverse-proxy ${ip}:80
|
||||||
}
|
}
|
||||||
|
7
node.tf
7
node.tf
@ -41,21 +41,16 @@ resource "null_resource" "cloud_init_deb12_node" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "null_resource" "node_caddy_template" {
|
resource "null_resource" "node_caddy_template" {
|
||||||
triggers = {
|
|
||||||
file_content = fileexists(local_file.node_caddy.filename) ? filemd5(local_file.node_caddy.filename) : timestamp()
|
|
||||||
}
|
|
||||||
|
|
||||||
connection {
|
connection {
|
||||||
type = "ssh"
|
type = "ssh"
|
||||||
user = "root"
|
user = "root"
|
||||||
private_key = var.ssh_private
|
private_key = var.ssh_private
|
||||||
host = var.proxy_ip
|
host = var.proxy_ip
|
||||||
port = var.proxy_port
|
|
||||||
}
|
}
|
||||||
|
|
||||||
provisioner "file" {
|
provisioner "file" {
|
||||||
source = local_file.node_caddy.filename
|
source = local_file.node_caddy.filename
|
||||||
destination = "${var.proxy_location}/${var.name}.caddy"
|
destination = "${var.proxy_location}/${var.name}.yml"
|
||||||
}
|
}
|
||||||
|
|
||||||
depends_on = [
|
depends_on = [
|
||||||
|
@ -13,11 +13,6 @@ variable "proxy_ip" {
|
|||||||
default = "10.0.9.0"
|
default = "10.0.9.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "proxy_port" {
|
|
||||||
description = "which port to use for the caddy file"
|
|
||||||
default = 222
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "proxy_location" {
|
variable "proxy_location" {
|
||||||
description = "which where to place the files upstream"
|
description = "which where to place the files upstream"
|
||||||
default = "/root/wireguard/nodes"
|
default = "/root/wireguard/nodes"
|
||||||
|
Loading…
Reference in New Issue
Block a user