@pulumi/digitalocean
Version:
A Pulumi package for creating and managing DigitalOcean cloud resources.
64 lines • 1.93 kB
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("digitalocean");
Object.defineProperty(exports, "apiEndpoint", {
get() {
var _a;
return (_a = __config.get("apiEndpoint")) !== null && _a !== void 0 ? _a : (utilities.getEnv("DIGITALOCEAN_API_URL") || "https://api.digitalocean.com");
},
enumerable: true,
});
Object.defineProperty(exports, "httpRetryMax", {
get() {
return __config.getObject("httpRetryMax");
},
enumerable: true,
});
Object.defineProperty(exports, "httpRetryWaitMax", {
get() {
return __config.getObject("httpRetryWaitMax");
},
enumerable: true,
});
Object.defineProperty(exports, "httpRetryWaitMin", {
get() {
return __config.getObject("httpRetryWaitMin");
},
enumerable: true,
});
Object.defineProperty(exports, "requestsPerSecond", {
get() {
return __config.getObject("requestsPerSecond");
},
enumerable: true,
});
Object.defineProperty(exports, "spacesAccessId", {
get() {
return __config.get("spacesAccessId");
},
enumerable: true,
});
Object.defineProperty(exports, "spacesEndpoint", {
get() {
var _a;
return (_a = __config.get("spacesEndpoint")) !== null && _a !== void 0 ? _a : utilities.getEnv("SPACES_ENDPOINT_URL");
},
enumerable: true,
});
Object.defineProperty(exports, "spacesSecretKey", {
get() {
return __config.get("spacesSecretKey");
},
enumerable: true,
});
Object.defineProperty(exports, "token", {
get() {
return __config.get("token");
},
enumerable: true,
});
//# sourceMappingURL=vars.js.map