Skip to content

Instantly share code, notes, and snippets.

@samcre
Last active December 7, 2018 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samcre/ddfcc7f3d0155ea34d30e13fb1e67922 to your computer and use it in GitHub Desktop.
Save samcre/ddfcc7f3d0155ea34d30e13fb1e67922 to your computer and use it in GitHub Desktop.
EKS module
module "eks" {
source = "terraform-aws-modules/eks/aws"
cluster_name = "${var.cluster_name}"
subnets = "${module.vpc.private_subnets}"
vpc_id = "${module.vpc.vpc_id}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment