UNPKG

pulumi-netbox

Version:

A Pulumi package for creating and managing Netbox resources.

22 lines 922 B
"use strict"; // *** 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.getTenantGroupOutput = exports.getTenantGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); function getTenantGroup(args, opts) { if (!opts) { opts = {}; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); return pulumi.runtime.invoke("netbox:index/getTenantGroup:getTenantGroup", { "name": args.name, }, opts); } exports.getTenantGroup = getTenantGroup; function getTenantGroupOutput(args, opts) { return pulumi.output(args).apply(a => getTenantGroup(a, opts)); } exports.getTenantGroupOutput = getTenantGroupOutput; //# sourceMappingURL=getTenantGroup.js.map