This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: () -> ()): () |