@crossdelta/infrastructure 0.2.18 → 0.2.19
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/dist/helpers/droplet-builder.d.ts +6 -0
- package/dist/index.cjs +26222 -67
- package/dist/index.d.ts +1 -0
- package/dist/index.js +26222 -67
- package/dist/runtimes/doks/cert-manager.d.ts +50 -0
- package/dist/runtimes/doks/cluster.d.ts +61 -0
- package/dist/runtimes/doks/index.d.ts +54 -0
- package/dist/runtimes/doks/ingress.d.ts +57 -0
- package/dist/runtimes/doks/nats.d.ts +51 -0
- package/dist/runtimes/doks/types.d.ts +313 -0
- package/dist/runtimes/doks/vpc.d.ts +18 -0
- package/dist/runtimes/doks/workloads.d.ts +79 -0
- package/dist/types/index.d.ts +4 -0
- package/package.json +4 -2
|
@@ -9,6 +9,10 @@ export interface DropletServiceResources {
|
|
|
9
9
|
/** Private IP for VPC communication */
|
|
10
10
|
privateIp: pulumi.Output<string>;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Environment variables that can contain Pulumi secrets.
|
|
14
|
+
*/
|
|
15
|
+
export type SecretEnvVars = Record<string, pulumi.Output<string> | string>;
|
|
12
16
|
export interface BuildDropletServicesOptions {
|
|
13
17
|
/** Service configs with platform: 'droplet' */
|
|
14
18
|
serviceConfigs: ServiceConfig[];
|
|
@@ -20,6 +24,8 @@ export interface BuildDropletServicesOptions {
|
|
|
20
24
|
sshKeyIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
21
25
|
/** Registry credentials for private images (optional) */
|
|
22
26
|
registryCredentials?: pulumi.Output<string>;
|
|
27
|
+
/** Service-specific environment variables (can include secrets) */
|
|
28
|
+
serviceEnvVars?: Record<string, SecretEnvVars>;
|
|
23
29
|
}
|
|
24
30
|
/**
|
|
25
31
|
* Builds Droplet resources for services with platform: 'droplet'.
|