From 0cedd6baedde6effcbf9c1e99b52e72ea2f4d526 Mon Sep 17 00:00:00 2001 From: Mark McDonnell Date: Sun, 18 Dec 2022 20:20:55 +0000 Subject: [PATCH] fix incorrect field reference --- website/docs/plugin/framework/resources/plan-modification.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/plugin/framework/resources/plan-modification.mdx b/website/docs/plugin/framework/resources/plan-modification.mdx index c7995aaa3..9462be8cc 100644 --- a/website/docs/plugin/framework/resources/plan-modification.mdx +++ b/website/docs/plugin/framework/resources/plan-modification.mdx @@ -89,7 +89,7 @@ func (m stringDefaultModifier) PlanModifyString(ctx context.Context, req planmod return } - resp.AttributePlan = types.StringValue(m.Default) + resp.PlanValue = types.StringValue(m.Default) } ```