I'm trying to disable inbound and outbound traffic from my default security groups, I already did it for my custom-created VPC using the restrictDefaultSecurityGroup: true but I'm finding another default VPC security group related to my Default VPC, I tried to access it using the code below but this doesn't seem to access the default security group, any suggestions would be helpful, I'm trying to achieve this using cdk not the AWS cloud Console.
this.disableDefaultVpcTrafficSg = new ec2.SecurityGroup(this, 'DisableDefaultVpcTrafficSg', {
vpc: ec2.Vpc.fromLookup(this, 'DefaultVPC', { isDefault: true }),
allowAllOutbound: false,
});
