Skip to content

Commit e57bf6f

Browse files
committed
revert
1 parent 9b445dc commit e57bf6f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

node_groups.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,10 @@ module "fargate_profile" {
233233

234234
region = var.region
235235

236+
# Pass through values to reduce GET requests from data sources
237+
partition = local.partition
238+
account_id = local.account_id
239+
236240
# Fargate Profile
237241
cluster_name = time_sleep.this[0].triggers["name"]
238242
cluster_ip_family = var.ip_family
@@ -274,6 +278,10 @@ module "eks_managed_node_group" {
274278

275279
region = var.region
276280

281+
# Pass through values to reduce GET requests from data sources
282+
partition = local.partition
283+
account_id = local.account_id
284+
277285
cluster_name = time_sleep.this[0].triggers["name"]
278286
kubernetes_version = each.value.kubernetes_version != null ? each.value.kubernetes_version : time_sleep.this[0].triggers["kubernetes_version"]
279287

@@ -399,6 +407,10 @@ module "self_managed_node_group" {
399407

400408
region = var.region
401409

410+
# Pass through values to reduce GET requests from data sources
411+
partition = local.partition
412+
account_id = local.account_id
413+
402414
cluster_name = time_sleep.this[0].triggers["name"]
403415

404416
# Autoscaling Group

0 commit comments

Comments
 (0)