Skip to content

Commit

Permalink
chore: fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spirius committed Nov 25, 2023
1 parent aaf5ea8 commit 207d1b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/api-lambda-auth/infrastructure/synth.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { ArchiveProvider } from "@cdktf/provider-archive/lib/provider"
import { AwsProvider } from "@cdktf/provider-aws/lib/provider"
import { S3Backend, TerraformOutput } from "cdktf"
import { S3Backend, TerraformOutput, TerraformStack } from "cdktf"
import { Command, Option } from "commander"
import { config as configDotenv } from "dotenv"

import { App, AppOptions, Stack } from "@cloudventure/sdf"
import { App, AppOptions } from "@cloudventure/sdf"
import { BundlerTypeScript } from "@cloudventure/sdf/bundler"
import { HttpApi } from "@cloudventure/sdf/http-api"
import { HttpApiLambdaAuthorizer } from "@cloudventure/sdf/http-api/authorizer"
Expand All @@ -29,7 +29,7 @@ export const synth = async (options: AppOptions): Promise<App> => {
} = (await cmd.parseAsync(options.argv)).opts()

const app = new App(options)
const stack = new Stack(app, "deployment")
const stack = new TerraformStack(app, "deployment")

new AwsProvider(stack, "aws")
new ArchiveProvider(stack, "archive")
Expand Down

0 comments on commit 207d1b6

Please sign in to comment.