removed variables from config

This commit is contained in:
2025-12-29 17:48:13 +01:00
parent 7b42f2e3bd
commit cbb6c9034c

View File

@@ -2,15 +2,6 @@ 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
}