-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add support for specifying conrol plane subnets separate from those used by node groups (data plane) #2113
feat: Add support for specifying conrol plane subnets separate from those used by node groups (data plane) #2113
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -331,6 +332,7 @@ module "vpc" { | |||
azs = ["${local.region}a", "${local.region}b", "${local.region}c"] | |||
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] | |||
public_subnets = ["10.0.4.0/24", "10.0.5.0/24", "10.0.6.0/24"] | |||
intra_subnets = ["10.0.7.0/28", "10.0.7.16/28", "10.0.7.32/28"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A good use-case for intra_subnets
!
@@ -44,8 +44,14 @@ variable "cluster_additional_security_group_ids" { | |||
default = [] | |||
} | |||
|
|||
variable "control_plane_subnet_ids" { | |||
description = "A list of subnet IDs where the EKS cluster control plane (ENIs) will be provisioned. Used for expanding the pool of subnets used by nodes/node groups without replacing the EKS control plane" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ENIs
= Elastic Network Interfaces, or what?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct - Elastic Network Interfaces
## [18.24.0](v18.23.0...v18.24.0) (2022-06-18) ### Features * Add support for specifying conrol plane subnets separate from those used by node groups (data plane) ([#2113](#2113)) ([ebc91bc](ebc91bc))
This PR is included in version 18.24.0 🎉 |
Kudos @bryantbiggs! That is good scalability opportunity. |
…hose used by node groups (data plane) (terraform-aws-modules#2113)
## [18.24.0](terraform-aws-modules/terraform-aws-eks@v18.23.0...v18.24.0) (2022-06-18) ### Features * Add support for specifying conrol plane subnets separate from those used by node groups (data plane) ([terraform-aws-modules#2113](terraform-aws-modules#2113)) ([ebc91bc](terraform-aws-modules@ebc91bc))
## [18.24.0](terraform-aws-modules/terraform-aws-eks@v18.23.0...v18.24.0) (2022-06-18) ### Features * Add support for specifying conrol plane subnets separate from those used by node groups (data plane) ([#2113](terraform-aws-modules/terraform-aws-eks#2113)) ([6847443](terraform-aws-modules/terraform-aws-eks@6847443))
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
1.21
references to1.22
v1alpha1
tov1beta1
in examplesMotivation and Context
Breaking Changes
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request