UNPKG

@pierskarsenbarg/sdm

Version:

A Pulumi package for creating and managing StrongDM cloud resources.

52 lines 1.78 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.getRemoteIdentityGroupOutput = exports.getRemoteIdentityGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * A RemoteIdentityGroup defines a group of remote identities. * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdm from "@pierskarsenbarg/sdm"; * * const _default = sdm.getRemoteIdentityGroup({ * name: "default", * }); * ``` */ function getRemoteIdentityGroup(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("sdm:index/getRemoteIdentityGroup:getRemoteIdentityGroup", { "id": args.id, "name": args.name, }, opts); } exports.getRemoteIdentityGroup = getRemoteIdentityGroup; /** * A RemoteIdentityGroup defines a group of remote identities. * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdm from "@pierskarsenbarg/sdm"; * * const _default = sdm.getRemoteIdentityGroup({ * name: "default", * }); * ``` */ function getRemoteIdentityGroupOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("sdm:index/getRemoteIdentityGroup:getRemoteIdentityGroup", { "id": args.id, "name": args.name, }, opts); } exports.getRemoteIdentityGroupOutput = getRemoteIdentityGroupOutput; //# sourceMappingURL=getRemoteIdentityGroup.js.map