mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-17 00:57:28 +01:00
fix: Attributes in timeouts are erroneously reversed (#1804)
This commit is contained in:
4
main.tf
4
main.tf
@@ -43,8 +43,8 @@ resource "aws_eks_cluster" "this" {
|
||||
|
||||
timeouts {
|
||||
create = lookup(var.cluster_timeouts, "create", null)
|
||||
delete = lookup(var.cluster_timeouts, "update", null)
|
||||
update = lookup(var.cluster_timeouts, "delete", null)
|
||||
update = lookup(var.cluster_timeouts, "update", null)
|
||||
delete = lookup(var.cluster_timeouts, "delete", null)
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
|
||||
Reference in New Issue
Block a user