UNPKG

@pulumi/kubernetes-cert-manager

Version:

This repo contains the Pulumi Cert Manager component for Kubernetes. This add-on automates the management and issuance of TLS certificates from various issuing sources. It ensures certificates are valid and up to date periodically, and attempts to renew c

36 lines 1.5 kB
"use strict"; // *** 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 }); exports.types = exports.Provider = exports.CertManager = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); exports.CertManager = null; utilities.lazyLoad(exports, ["CertManager"], () => require("./certManager")); exports.Provider = null; utilities.lazyLoad(exports, ["Provider"], () => require("./provider")); // Export sub-modules: const types = require("./types"); exports.types = types; const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "kubernetes-cert-manager:index:CertManager": return new exports.CertManager(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("kubernetes-cert-manager", "index", _module); pulumi.runtime.registerResourcePackage("kubernetes-cert-manager", { version: utilities.getVersion(), constructProvider: (name, type, urn) => { if (type !== "pulumi:providers:kubernetes-cert-manager") { throw new Error(`unknown provider type ${type}`); } return new exports.Provider(name, undefined, { urn }); }, }); //# sourceMappingURL=index.js.map