File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,8 @@ module "eks" {
202202 }
203203 }
204204 }
205- taints = var.initial_node_taints
205+ taints = var.initial_node_taints
206+ iam_role_additional_policies = var.node_iam_additional_policies
206207 }
207208 } : {}
208209 access_entries = merge (local. admin_access_entries , local. ro_access_entries , local. extra_access_entries )
Original file line number Diff line number Diff line change @@ -193,8 +193,15 @@ variable "vpc_endpoints" {
193193 description = " vpc endpoints within the cluster vpc network, note: this only works when using the internal created VPC"
194194 default = []
195195}
196+
196197variable "cluster_endpoint_public_access" {
197198 type = bool
198199 default = true
199200 description = " Whether the EKS cluster API server endpoint is publicly accessible. Set to false for private-only access (requires VPC connectivity)."
200201}
202+
203+ variable "node_iam_additional_policies" {
204+ type = map (string )
205+ default = {}
206+ description = " Map of IAM policy name to ARN to attach to the managed node group IAM role."
207+ }
You can’t perform that action at this time.
0 commit comments