@tyevco/pulumi-homelab 0.5.5 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lxcContainer.d.ts CHANGED
@@ -14,6 +14,8 @@ export interface LxcContainerArgs {
14
14
  autostart?: pulumi.Input<boolean>;
15
15
  /** If set, clone this existing container instead of creating from scratch. Triggers replacement on change. */
16
16
  sourceContainer?: pulumi.Input<string>;
17
+ /** If set, clone from this snapshot of sourceContainer instead of the live container. Triggers replacement on change. */
18
+ snapshotName?: pulumi.Input<string>;
17
19
  /** Config appended after cloning (only used with sourceContainer). Triggers replacement on change. */
18
20
  initialConfig?: pulumi.Input<string>;
19
21
  }
@@ -29,6 +31,7 @@ export declare class LxcContainer extends pulumi.CustomResource {
29
31
  readonly pid: pulumi.Output<number>;
30
32
  readonly memory: pulumi.Output<string>;
31
33
  readonly sourceContainer: pulumi.Output<string | undefined>;
34
+ readonly snapshotName: pulumi.Output<string | undefined>;
32
35
  readonly initialConfig: pulumi.Output<string | undefined>;
33
36
  constructor(name: string, args: LxcContainerArgs, opts?: pulumi.CustomResourceOptions);
34
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tyevco/pulumi-homelab",
3
- "version": "0.5.5",
3
+ "version": "1.10.1",
4
4
  "description": "Pulumi SDK for managing homelab infrastructure",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",
package/provider.d.ts CHANGED
@@ -14,9 +14,9 @@ export declare class Provider extends pulumi.ProviderResource {
14
14
  constructor(name: string, args?: ProviderArgs, opts?: pulumi.ResourceOptions);
15
15
  }
16
16
  export interface ProviderArgs {
17
- /** The URL of the Dockge server (e.g., http://192.168.1.100:5001) */
17
+ /** The URL of the Homelab server (e.g., http://192.168.1.100:5001) */
18
18
  url?: pulumi.Input<string>;
19
- /** API key for authenticating with the Dockge REST API */
19
+ /** API key for authenticating with the Homelab REST API */
20
20
  apiKey?: pulumi.Input<string>;
21
21
  /** The URL of the OPNsense server (e.g., https://192.168.1.1) */
22
22
  opnsenseUrl?: pulumi.Input<string>;
package/traefikRoute.d.ts CHANGED
@@ -6,7 +6,7 @@ export interface TraefikRouteArgs {
6
6
  content: pulumi.Input<string>;
7
7
  }
8
8
  /**
9
- * Manages a Traefik dynamic route configuration file via the Dockge REST API.
9
+ * Manages a Traefik dynamic route configuration file via the Homelab REST API.
10
10
  */
11
11
  export declare class TraefikRoute extends pulumi.CustomResource {
12
12
  readonly name: pulumi.Output<string>;
package/traefikRoute.js CHANGED
@@ -38,7 +38,7 @@ const pulumi = __importStar(require("@pulumi/pulumi"));
38
38
  const PLUGIN_VERSION = require("./package.json").version;
39
39
  const PLUGIN_DOWNLOAD_URL = "github://api.github.com/tyevco/pulumi-homelab";
40
40
  /**
41
- * Manages a Traefik dynamic route configuration file via the Dockge REST API.
41
+ * Manages a Traefik dynamic route configuration file via the Homelab REST API.
42
42
  */
43
43
  class TraefikRoute extends pulumi.CustomResource {
44
44
  constructor(name, args, opts) {
@@ -4,7 +4,7 @@ export interface TraefikStaticConfigArgs {
4
4
  content: pulumi.Input<string>;
5
5
  }
6
6
  /**
7
- * Manages the Traefik static configuration file (traefik.yml) via the Dockge REST API.
7
+ * Manages the Traefik static configuration file (traefik.yml) via the Homelab REST API.
8
8
  */
9
9
  export declare class TraefikStaticConfig extends pulumi.CustomResource {
10
10
  readonly content: pulumi.Output<string>;
@@ -38,7 +38,7 @@ const pulumi = __importStar(require("@pulumi/pulumi"));
38
38
  const PLUGIN_VERSION = require("./package.json").version;
39
39
  const PLUGIN_DOWNLOAD_URL = "github://api.github.com/tyevco/pulumi-homelab";
40
40
  /**
41
- * Manages the Traefik static configuration file (traefik.yml) via the Dockge REST API.
41
+ * Manages the Traefik static configuration file (traefik.yml) via the Homelab REST API.
42
42
  */
43
43
  class TraefikStaticConfig extends pulumi.CustomResource {
44
44
  constructor(name, args, opts) {
package/dockgeStack.js DELETED
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DockgeStack = void 0;
4
- // Backward compatibility — re-exports from renamed module
5
- var stack_1 = require("./stack");
6
- Object.defineProperty(exports, "DockgeStack", { enumerable: true, get: function () { return stack_1.DockgeStack; } });