From b9bd82859dc72827ae2887f5757f871497e93c9e Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Thu, 6 Aug 2026 11:00:10 +0530 Subject: [PATCH] Please provide the code changes or file diffs you would like me to summarize. --- aws_cdk/cdk.context.json | 1 + aws_cdk/lib/aws_cdk-stack.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 aws_cdk/cdk.context.json diff --git a/aws_cdk/cdk.context.json b/aws_cdk/cdk.context.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/aws_cdk/cdk.context.json @@ -0,0 +1 @@ +{} diff --git a/aws_cdk/lib/aws_cdk-stack.ts b/aws_cdk/lib/aws_cdk-stack.ts index d624d5a..f886554 100644 --- a/aws_cdk/lib/aws_cdk-stack.ts +++ b/aws_cdk/lib/aws_cdk-stack.ts @@ -38,7 +38,7 @@ export class AwsCdkStack extends cdk.Stack { const instance = new ec2.Instance(this, 'MailServerInstance', { vpc, vpcSubnets: { subnetType: ec2.SubnetType.PUBLIC }, - instanceType: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MEDIUM), + instanceType: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MICRO), machineImage: ec2.MachineImage.fromSsmParameter( '/aws/service/canonical/ubuntu/server/24.04/stable/current/amd64/hvm/ebs-gp3/ami-id' ),