From b2f681334122cdc3f2a3683a3b95ff44bb3f2285 Mon Sep 17 00:00:00 2001 From: Bryan Stenson <93951028+BryanStenson-okta@users.noreply.github.com> Date: Fri, 9 Dec 2022 08:14:01 -0800 Subject: [PATCH] typo (#32327) --- internal/terraform/evaluate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/terraform/evaluate.go b/internal/terraform/evaluate.go index 7eeff534cd..d680136d8d 100644 --- a/internal/terraform/evaluate.go +++ b/internal/terraform/evaluate.go @@ -176,7 +176,7 @@ func (d *evaluationStateData) GetForEachAttr(addr addrs.ForEachAttr, rng tfdiags diags = diags.Append(&hcl.Diagnostic{ Severity: hcl.DiagError, Summary: `each.value cannot be used in this context`, - Detail: `A reference to "each.value" has been used in a context in which it unavailable, such as when the configuration no longer contains the value in its "for_each" expression. Remove this reference to each.value in your configuration to work around this error.`, + Detail: `A reference to "each.value" has been used in a context in which it is unavailable, such as when the configuration no longer contains the value in its "for_each" expression. Remove this reference to each.value in your configuration to work around this error.`, Subject: rng.ToHCL().Ptr(), }) return cty.UnknownVal(cty.DynamicPseudoType), diags