This repository was archived by the owner on Jul 8, 2024. It is now read-only.

Description
I'm trying to use the performance test but I'm getting this error in my AWS Batch Environment
CLIENT_ERROR - One or more security groups in the launch configuration are not linked to the VPCs configured in the Auto Scaling group
I'm trying to use an existing Kafka deployment
new CdkStack(app, 'demo-cluster-1', {
...defaults,
vpc: vpc,
clusterName: 'demo-cluster-1',
bootstrapBrokerString: 'xxxxx',
sg: 'sg-xxxxx',
});
The security group I provided is the one used by my MSK cluster in my default VPC. If I understand the error correctly the security group isn't in the VPC created by the CDK.