Skip to content

Commit 912284f

Browse files
committed
fix: Correct timeouts
1 parent b751a59 commit 912284f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ resource "aws_redshift_cluster" "this" {
5353
for_each = var.cluster_timeouts != null ? [var.cluster_timeouts] : []
5454

5555
content {
56-
create = each.value.create
57-
update = each.value.update
58-
delete = each.value.delete
56+
create = timeouts.value.create
57+
update = timeouts.value.update
58+
delete = timeouts.value.delete
5959
}
6060
}
6161

0 commit comments

Comments
 (0)