Skip to content

Instantly share code, notes, and snippets.

@esys
Created September 4, 2020 14:11
Show Gist options
  • Save esys/f9c4d6b9a53e29de2a9156bbe6837107 to your computer and use it in GitHub Desktop.
Save esys/f9c4d6b9a53e29de2a9156bbe6837107 to your computer and use it in GitHub Desktop.
const vpc = new ec2.Vpc(this, "eks-vpc");
const cluster = new eks.Cluster(this, "Cluster", {
vpc: vpc,
defaultCapacity: 0, // we want to manage capacity ourselves
version: eks.KubernetesVersion.V1_17,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment