Skip to content

Commit

Permalink
fix: Attributes in timeouts are erroneously reversed (#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
qingvincentyin authored Jan 22, 2022
1 parent 9f85dc8 commit f8fe584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit f8fe584

Please sign in to comment.