@twingate/pulumi-twingate
Version:
A Pulumi package for creating and managing Twingate cloud resources.
57 lines (56 loc) • 2.2 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* A Remote Network represents a single private network in Twingate that can have one or more Connectors and Resources assigned to it. You must create a Remote Network before creating Resources and Connectors that belong to it. For more information, see Twingate's [documentation](https://docs.twingate.com/docs/remote-networks).
*/
export declare function getTwingateRemoteNetwork(args?: GetTwingateRemoteNetworkArgs, opts?: pulumi.InvokeOptions): Promise<GetTwingateRemoteNetworkResult>;
/**
* A collection of arguments for invoking getTwingateRemoteNetwork.
*/
export interface GetTwingateRemoteNetworkArgs {
/**
* The ID of the Remote Network
*/
id?: string;
/**
* The name of the Remote Network
*/
name?: string;
}
/**
* A collection of values returned by getTwingateRemoteNetwork.
*/
export interface GetTwingateRemoteNetworkResult {
/**
* The ID of the Remote Network
*/
readonly id?: string;
/**
* The location of the Remote Network. Must be one of the following: AWS, AZURE, GOOGLE*CLOUD, ON*PREMISE, OTHER.
*/
readonly location: string;
/**
* The name of the Remote Network
*/
readonly name?: string;
/**
* The type of the Remote Network. Must be one of the following: REGULAR, EXIT.
*/
readonly type: string;
}
/**
* A Remote Network represents a single private network in Twingate that can have one or more Connectors and Resources assigned to it. You must create a Remote Network before creating Resources and Connectors that belong to it. For more information, see Twingate's [documentation](https://docs.twingate.com/docs/remote-networks).
*/
export declare function getTwingateRemoteNetworkOutput(args?: GetTwingateRemoteNetworkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTwingateRemoteNetworkResult>;
/**
* A collection of arguments for invoking getTwingateRemoteNetwork.
*/
export interface GetTwingateRemoteNetworkOutputArgs {
/**
* The ID of the Remote Network
*/
id?: pulumi.Input<string>;
/**
* The name of the Remote Network
*/
name?: pulumi.Input<string>;
}