supplier_central_frontend/cdk/app.ts
vickytechkey c7a9d05b94
Some checks failed
Beta CI/CD Pipeline / build-and-test (push) Failing after 3s
Beta CI/CD Pipeline / deploy-beta (push) Has been skipped
initialize AWS CDK stack to deploy website S3 bucket with CloudFront distribution and Route53 records
2026-09-06 18:00:13 +05:30

21 lines
984 B
JavaScript

#!/usr/bin/env node
import 'source-map-support/register.js';
import * as cdk from 'aws-cdk-lib';
import { BetaSupplierSiteStack } from './betasupplier-site-stack.js';
const app = new cdk.App();
new BetaSupplierSiteStack(app, 'BetaSupplierSiteStack', {
/* If you don't specify 'env', this stack will be environment-agnostic.
* Account/Region-dependent features and context lookups will not work,
* but a single synthesized template can be deployed anywhere. */
/* Uncomment the next line to specialize this stack for the AWS Account
* and Region that are implied by the current CLI configuration. */
env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION },
/* Uncomment the next line if you know exactly what Account and Region you
* want to deploy the stack to. */
// env: { account: '123456789012', region: 'us-east-1' },
/* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */
});