hetzner haproxy, varnish & web setup

This commit is contained in:
2025-12-28 22:30:12 +01:00
parent ec0eb23acd
commit 80b58a9f3e
13 changed files with 2312 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import * as pulumi from "@pulumi/pulumi";
const config = new pulumi.Config();
const variables = {
osImage: config.get("image") || "debian-11",
machineType: config.get("serverType") || "f1-micro",
machineLocation: config.get("location") || "hel1",
instanceTag: config.get("instanceTag") || "webserver",
servicePort: config.get("servicePort") || "80"
}
export {
variables,
config
}