Skip to content

What does configuring EKS node groups look like with Gruntwork? #178

Answered by zackproser
zackproser asked this question in Help
Discussion options

You must be logged in to vote

Firstly, you can definitely modify the EKS cluster node groups following a Reference Architecture deployment. One of the benefits of having a Reference Architecture deployed is that you receive 100% of the code, so you can modify it however you wish.

Secondly, here's some examples of what it looks like to configure Node groups in terragrunt:

managed_node_group_configurations = {
    group = {
      min_size       = 2
      max_size       = 4
      desired_size   = 2
      instance_types = ["t3.micro"]
      subnet_ids     = dependency.vpc.outputs.private_app_subnet_ids
    }
  }
  cluster_instance_ami_filters = {
    owners = [local.common_vars.locals.account_ids.shared]
    filters = [
 …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by zackproser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
1 participant