pulumi-superfly
Version:
A native Pulumi provider for Fly.io. This package is still in early development. There is basically no documentation and APIs are likely to change.
15 lines • 654 B
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
const __config = new pulumi.Config("flyio");
Object.defineProperty(exports, "token", {
get() {
var _a;
return (_a = __config.get("token")) !== null && _a !== void 0 ? _a : (utilities.getEnv("FLY_API_TOKEN", "FLY_TOKEN", "FLY_API_KEY", "FLY_KEY") || "");
},
enumerable: true,
});
//# sourceMappingURL=vars.js.map