@lbrlabs/pulumi-grafana
Version:
A Pulumi package for creating and managing grafana.
25 lines • 959 B
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.getCloudStackOutput = exports.getCloudStack = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Data source for Grafana Stack
*/
function getCloudStack(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("grafana:index/getCloudStack:getCloudStack", {
"slug": args.slug,
}, opts);
}
exports.getCloudStack = getCloudStack;
/**
* Data source for Grafana Stack
*/
function getCloudStackOutput(args, opts) {
return pulumi.output(args).apply((a) => getCloudStack(a, opts));
}
exports.getCloudStackOutput = getCloudStackOutput;
//# sourceMappingURL=getCloudStack.js.map