@activatedio/cdktf-google
Version:
TypeScript library for CDKTF for google
18 lines (17 loc) • 486 B
TypeScript
import { Construct } from 'constructs';
interface ITailscaleProps {
routes: string[];
name: string;
authToken: string;
instances: ITailscaleInstanceProps[];
networkHostProject: string;
subnetwork: string;
}
interface ITailscaleInstanceProps {
name: string;
zone: string;
}
declare class Tailscale extends Construct {
constructor(scope: Construct, id: string, props: ITailscaleProps);
}
export { Tailscale, ITailscaleProps, ITailscaleInstanceProps };