I am implementing this below solution, using AWS CDK to provision an EKS already, then I want to add and AlbController into the Stack, like this
const albController = new eks.AlbController(this, 'myAlbController', {
cluster: this.cluster,
version: eks.AlbControllerVersion.V2_4_1
});
The point is the AWS CDK just supports v2.4.1 while it is recommended to use 2.4.3, then I have to switch to use
version: eks.AlbControllerVersion.of('v2.4.3')
But it looks like we have to implement some things more like policy ... for such custom version of AlbController
Can you please help a full implementation of v2.4.3 this using CDK?
https://aws.amazon.com/blogs/containers/integrate-amazon-api-gateway-with-amazon-eks/
