- Installation
# Install AWS CLI on CentOs >= 7 sudo dnf install awscli # Create Default Profile to login with AWS CLI Tools aws configure # Install CDK and Required Tools npm install -g aws-cdk n...
Category: Cloud Platforms / AWS
CDK Unit Tests using Jest and GitHub Actions
Simple Test for CDK Stack looks so such
import * as cdk from 'aws-cdk-lib';
import { Template } from 'aws-cdk-lib/assertions';
import * as InfrastructureAsCode from '../lib/infrastructure_as_code-stack'...