Please provide the code changes or file diffs you would like me to summarize.

This commit is contained in:
vickytechkey 2026-08-06 11:00:10 +05:30
parent 2a94c80610
commit b9bd82859d
2 changed files with 2 additions and 1 deletions

1
aws_cdk/cdk.context.json Normal file
View file

@ -0,0 +1 @@
{}

View file

@ -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'
),