Skip to content

Instantly share code, notes, and snippets.

View TreehouseFalcon's full-sized avatar

Juniper Hovey TreehouseFalcon

View GitHub Profile
import { AwsProvider } from "@cdktf/provider-aws/lib/provider";
import { CloudBackend, NamedCloudWorkspace, TerraformStack } from "cdktf";
import { Construct } from "constructs";
import { Cert } from "./cert";
import { Domain } from "./domain/index";
import { Iam } from "./iam";
import { Net } from "./net";
import { S3 } from "./s3";
import { TailscaleProvider } from "../../../.gen/providers/tailscale/provider";
import { DeviceKey as TailscaleDeviceKey } from "../../../.gen/providers/tailscale/device-key";
$ cdktf debug --experimental-provider-schema-cache-path
cdktf debug
language: typescript
cdktf-cli: 0.20.4
node: v18.16.0
cdktf: 0.20.4
constructs: 10.1.121
jsii: null
terraform: 1.5.4
arch: x64
@TreehouseFalcon
TreehouseFalcon / testez.d.lua
Created January 8, 2023 19:10
Lua typedef file for TestEZ
declare function afterAll(callback: () -> ()): ()
declare function afterEach(callback: () -> ()): ()
declare function beforeAll(callback: () -> ()): ()
declare function beforeEach(callback: () -> ()): ()
declare function describe(phrase: string, callback: () -> ()): ()
declare function describeFOCUS(phrase: string, callback: () -> ()): ()
declare function fdescribe(phrase: string, callback: () -> ()): ()
declare function describeSKIP(phrase: string, callback: () -> ()): ()