1 Commits

Author SHA1 Message Date
cuddle-please
2c0fe6057e chore(release): 0.5.7
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-01-12 13:20:50 +00:00
4 changed files with 5 additions and 15 deletions

View File

@@ -6,16 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [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

View File

@@ -1,4 +1,4 @@
@${name}-node ${replace(name, "_", "-")}.nodes.i.kjuulh.io
handle @${name}-node {
reverse_proxy ${split("/", ip)[0]}:80
handle ${name}-node {
reverse-proxy ${split("/", ip)[0]}:80
}

View File

@@ -41,8 +41,8 @@ resource "null_resource" "cloud_init_deb12_node" {
}
resource "null_resource" "node_caddy_template" {
triggers = {
file_content = fileexists(local_file.node_caddy.filename) ? filemd5(local_file.node_caddy.filename) : timestamp()
triggers {
file_content = filemd5(local_file.node_caddy.filename)
}
connection {

View File

@@ -2,7 +2,7 @@ terraform {
required_providers {
proxmox = {
source = "Telmate/proxmox"
version = "3.0.1-rc9"
version = "3.0.1-rc6"
}
}
required_version = ">= 0.13"