Forklift buildx provider
This commit is contained in:
5
sdk/nodejs/config/index.ts
generated
Normal file
5
sdk/nodejs/config/index.ts
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
||||
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||
|
||||
// Export members:
|
||||
export * from "./vars";
|
||||
31
sdk/nodejs/config/vars.ts
generated
Normal file
31
sdk/nodejs/config/vars.ts
generated
Normal file
@@ -0,0 +1,31 @@
|
||||
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
||||
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||
|
||||
import * as pulumi from "@pulumi/pulumi";
|
||||
import * as inputs from "../types/input";
|
||||
import * as outputs from "../types/output";
|
||||
import * as enums from "../types/enums";
|
||||
import * as utilities from "../utilities";
|
||||
|
||||
declare var exports: any;
|
||||
const __config = new pulumi.Config("dockerbuild");
|
||||
|
||||
/**
|
||||
* The build daemon's address.
|
||||
*/
|
||||
export declare const host: string;
|
||||
Object.defineProperty(exports, "host", {
|
||||
get() {
|
||||
return __config.get("host") ?? (utilities.getEnv("DOCKER_HOST") || "");
|
||||
},
|
||||
enumerable: true,
|
||||
});
|
||||
|
||||
export declare const registries: outputs.Registry[] | undefined;
|
||||
Object.defineProperty(exports, "registries", {
|
||||
get() {
|
||||
return __config.getObject<outputs.Registry[]>("registries");
|
||||
},
|
||||
enumerable: true,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user