Compare commits
5 Commits
v0.5.8
...
renovate/a
Author | SHA1 | Date | |
---|---|---|---|
079add0c4e | |||
a8ceee4044 | |||
9087b75d5b
|
|||
8d7aea6894
|
|||
b793003532
|
@@ -6,6 +6,11 @@ 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
|
## [0.5.8] - 2025-01-12
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@@ -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 ${split("/", ip)[0]}:80
|
||||||
}
|
}
|
||||||
|
2
node.tf
2
node.tf
@@ -42,7 +42,7 @@ resource "null_resource" "cloud_init_deb12_node" {
|
|||||||
|
|
||||||
resource "null_resource" "node_caddy_template" {
|
resource "null_resource" "node_caddy_template" {
|
||||||
triggers = {
|
triggers = {
|
||||||
file_content = filemd5(local_file.node_caddy.filename)
|
file_content = fileexists(local_file.node_caddy.filename) ? filemd5(local_file.node_caddy.filename) : timestamp()
|
||||||
}
|
}
|
||||||
|
|
||||||
connection {
|
connection {
|
||||||
|
@@ -2,7 +2,7 @@ terraform {
|
|||||||
required_providers {
|
required_providers {
|
||||||
proxmox = {
|
proxmox = {
|
||||||
source = "Telmate/proxmox"
|
source = "Telmate/proxmox"
|
||||||
version = "3.0.1-rc6"
|
version = "3.0.1-rc9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
required_version = ">= 0.13"
|
required_version = ">= 0.13"
|
||||||
|
Reference in New Issue
Block a user