From 3dbf8aae7b1fca144c3e9d06d35c29284bf096dc Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 7 Nov 2024 17:12:57 -0800 Subject: [PATCH] tofu: eval_iteration.go is now eval_expansion.go Using the word "iteration" to describe what count and for_each do tends to confuse people because it sounds like explicit control flow rather than just dynamically declaring multiple objects. Elsewhere in the codebase we refer to this idea as "expansion" so this is a rename for consistency with that and to remove the confusing terminology. Signed-off-by: Martin Atkins --- internal/tofu/{eval_iteration.go => eval_expansion.go} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename internal/tofu/{eval_iteration.go => eval_expansion.go} (100%) diff --git a/internal/tofu/eval_iteration.go b/internal/tofu/eval_expansion.go similarity index 100% rename from internal/tofu/eval_iteration.go rename to internal/tofu/eval_expansion.go