Skip to content

Commit

Permalink
feat(esm): moving braze cdk to esm
Browse files Browse the repository at this point in the history
  • Loading branch information
bassrock committed Jan 2, 2025
1 parent d20885d commit c56d1be
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SqsLambda, SqsLambdaProps } from './base/sqsLambda.ts';
import { config as stackConfig } from '../config/index.ts';

import { sqsQueue } from '@cdktf/provider-aws';
import { ApplicationSqsSnsTopicSubscription } from '@pocket-tools/terraform-modules/';
import { ApplicationSqsSnsTopicSubscription } from '@pocket-tools/terraform-modules';

import { Construct } from 'constructs';

Expand Down
1 change: 1 addition & 0 deletions infrastructure/braze/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions infrastructure/braze/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Construct } from 'constructs';
import { App, S3Backend, TerraformStack } from 'cdktf';
import { provider as awsProvider } from '@cdktf/provider-aws';
import { config } from './config';
import { EmailSendDomain } from './emailSendDomain';
import { config } from './config/index.ts';
import { EmailSendDomain } from './emailSendDomain.ts';
import * as fs from 'fs';
import { ClickTrackingDomain } from './clickTrackingDomain';
import { DataExportBucket } from './dataExport';
import { ClickTrackingDomain } from './clickTrackingDomain.ts';
import { DataExportBucket } from './dataExport.ts';

class Braze extends TerraformStack {
constructor(scope: Construct, name: string) {
Expand Down

0 comments on commit c56d1be

Please sign in to comment.