1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

feat: Add ability to define custom timeout for fargate profiles (#1614)

This commit is contained in:
Ivan Dechovski
2021-11-03 10:44:26 +01:00
committed by GitHub
parent 6959b9bae3
commit b7539dc220
4 changed files with 20 additions and 0 deletions
+5
View File
@@ -63,5 +63,10 @@ resource "aws_eks_fargate_profile" "this" {
}
}
timeouts {
create = try(each.value["timeouts"].create, null)
delete = try(each.value["timeouts"].delete, null)
}
tags = merge(var.tags, lookup(each.value, "tags", {}))
}