@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
103 lines • 3.95 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getNodeOutput = exports.getNode = void 0;
const pulumi = __importStar(require("@pulumi/pulumi"));
const utilities = __importStar(require("./utilities"));
/**
* Nodes make up the StrongDM network, and allow your users to connect securely to your resources.
* There are three types of nodes:
* 1. **Relay:** creates connectivity to your datasources, while maintaining the egress-only nature of your firewall
* 2. **Gateway:** a relay that also listens for connections from StrongDM clients
* 3. **Proxy Cluster:** a cluster of workers that together mediate access from clients to resources
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdm from "@pierskarsenbarg/sdm";
*
* const gatewayQuery = sdm.getNode({
* type: "gateway",
* tags: {
* region: "us-west",
* env: "dev",
* },
* });
* ```
* <!--End PulumiCodeChooser -->
*/
function getNode(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sdm:index/getNode:getNode", {
"bindAddress": args.bindAddress,
"id": args.id,
"listenAddress": args.listenAddress,
"name": args.name,
"tags": args.tags,
"type": args.type,
}, opts);
}
exports.getNode = getNode;
/**
* Nodes make up the StrongDM network, and allow your users to connect securely to your resources.
* There are three types of nodes:
* 1. **Relay:** creates connectivity to your datasources, while maintaining the egress-only nature of your firewall
* 2. **Gateway:** a relay that also listens for connections from StrongDM clients
* 3. **Proxy Cluster:** a cluster of workers that together mediate access from clients to resources
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdm from "@pierskarsenbarg/sdm";
*
* const gatewayQuery = sdm.getNode({
* type: "gateway",
* tags: {
* region: "us-west",
* env: "dev",
* },
* });
* ```
* <!--End PulumiCodeChooser -->
*/
function getNodeOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sdm:index/getNode:getNode", {
"bindAddress": args.bindAddress,
"id": args.id,
"listenAddress": args.listenAddress,
"name": args.name,
"tags": args.tags,
"type": args.type,
}, opts);
}
exports.getNodeOutput = getNodeOutput;
//# sourceMappingURL=getNode.js.map