Skip to content

Commit 6b4efc5

Browse files
committed
chore: rebase nonsense
1 parent 02353e1 commit 6b4efc5

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

variables.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
196197
variable "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+
}

0 commit comments

Comments
 (0)