From f8fe584d5b50cc4009ac6c34e3bbb33a4e282f2e Mon Sep 17 00:00:00 2001 From: Vincent Yin Date: Sat, 22 Jan 2022 02:15:38 -0500 Subject: [PATCH] fix: Attributes in timeouts are erroneously reversed (#1804) --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 5797a65649..e7f1f113b8 100644 --- a/main.tf +++ b/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 = [