UNPKG

@formalco/pulumi

Version:

A Pulumi package for creating and managing Formal resources.

28 lines 1.04 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.getGroupOutput = exports.getGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Data source for looking up a Group by name. */ function getGroup(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("formal:index/getGroup:getGroup", { "name": args.name, }, opts); } exports.getGroup = getGroup; /** * Data source for looking up a Group by name. */ function getGroupOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("formal:index/getGroup:getGroup", { "name": args.name, }, opts); } exports.getGroupOutput = getGroupOutput; //# sourceMappingURL=getGroup.js.map