From e672cd8c28f974b133b5d3fd8f8ff94f2ddffee3 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Fri, 22 Sep 2023 17:41:04 -0700 Subject: [PATCH] rpcapi: ApplyStackChanges must actually pass the plan to stackruntime --- internal/rpcapi/stacks.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/rpcapi/stacks.go b/internal/rpcapi/stacks.go index 55664e8aaa..80393eaa12 100644 --- a/internal/rpcapi/stacks.go +++ b/internal/rpcapi/stacks.go @@ -353,6 +353,7 @@ func (s *stacksServer) ApplyStackChanges(req *terraform1.ApplyStackChanges_Reque rtReq := stackruntime.ApplyRequest{ Config: cfg, ProviderFactories: providerFactories, + RawPlan: req.PlannedChanges, } rtResp := stackruntime.ApplyResponse{ AppliedChanges: changesCh,