@pulumi/consul
Version:
A Pulumi package for creating and managing consul resources.
28 lines • 1.23 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getConfigEntryOutput = exports.getConfigEntry = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
function getConfigEntry(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("consul:index/getConfigEntry:getConfigEntry", {
"kind": args.kind,
"name": args.name,
"namespace": args.namespace,
"partition": args.partition,
}, opts);
}
exports.getConfigEntry = getConfigEntry;
function getConfigEntryOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("consul:index/getConfigEntry:getConfigEntry", {
"kind": args.kind,
"name": args.name,
"namespace": args.namespace,
"partition": args.partition,
}, opts);
}
exports.getConfigEntryOutput = getConfigEntryOutput;
//# sourceMappingURL=getConfigEntry.js.map