feat: Add deployment script

This commit is contained in:
2024-01-30 17:33:47 +01:00
parent cd5de224fe
commit edfe447478
11 changed files with 4511 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// import * as cdk from 'aws-cdk-lib';
// import { Template } from 'aws-cdk-lib/assertions';
// import * as Deployment from '../lib/deployment-stack';
// example test. To run these tests, uncomment this file along with the
// example resource in lib/deployment-stack.ts
test('SQS Queue Created', () => {
// const app = new cdk.App();
// // WHEN
// const stack = new Deployment.DeploymentStack(app, 'MyTestStack');
// // THEN
// const template = Template.fromStack(stack);
// template.hasResourceProperties('AWS::SQS::Queue', {
// VisibilityTimeout: 300
// });
});