From 30166810ca020bb0c1ce40773ceb04d693d5aa4d Mon Sep 17 00:00:00 2001 From: faris Aljohari <83524184+farisaljohari@users.noreply.github.com> Date: Wed, 9 Jul 2025 04:46:42 -0600 Subject: [PATCH] Fix import order and standardize database name in app.ts --- infrastructure/app.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/infrastructure/app.ts b/infrastructure/app.ts index 3344b67..0231816 100644 --- a/infrastructure/app.ts +++ b/infrastructure/app.ts @@ -1,6 +1,6 @@ #!/usr/bin/env node -import 'source-map-support/register'; import * as cdk from 'aws-cdk-lib'; +import 'source-map-support/register'; import { BackendStack } from './stack'; const app = new cdk.App(); @@ -10,6 +10,7 @@ new BackendStack(app, 'SyncrowBackendStack', { account: process.env.CDK_DEFAULT_ACCOUNT, region: 'me-central-1', }, - databaseName: 'syncrow', - certificateArn: 'arn:aws:acm:me-central-1:482311766496:certificate/bea1e2ae-84a1-414e-8dbf-4599397e7ed0', + databaseName: 'postgres', + certificateArn: + 'arn:aws:acm:me-central-1:482311766496:certificate/bea1e2ae-84a1-414e-8dbf-4599397e7ed0', });