Skip to content

Commit ea88cb0

Browse files
authored
Log the human readable plan to debug log (#227)
Follow up to #222 to add the human readable plan to the debug log output. fixes #216
1 parent 33ed9fb commit ea88cb0

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

pkg/tfsandbox/plan.go

+23-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ package tfsandbox
1616

1717
import (
1818
"context"
19+
"errors"
1920
"fmt"
2021
"path"
2122

@@ -66,12 +67,31 @@ func (t *Tofu) planWithOptions(ctx context.Context, logger Logger, refreshOnly b
6667
return nil, fmt.Errorf("error running plan: %w", err)
6768
}
6869

69-
// NOTE: the recommended default from terraform-json is to set JSONNumber=true
70-
// otherwise some number values will lose precision when converted to float64
71-
plan, err := t.tf.ShowPlanFile(ctx, planFile, tfexec.JSONNumber(true))
70+
var (
71+
plan *tfjson.Plan
72+
planErr error
73+
planCh = make(chan bool)
74+
)
75+
76+
// fork
77+
go func() {
78+
defer close(planCh)
79+
// NOTE: the recommended default from terraform-json is to set JSONNumber=true
80+
// otherwise some number values will lose precision when converted to float64
81+
plan, planErr = t.tf.ShowPlanFile(ctx, planFile, tfexec.JSONNumber(true))
82+
}()
83+
84+
humanPlan, humanPlanErr := t.tf.ShowPlanFileRaw(ctx, planFile, tfexec.JSONNumber(true))
85+
86+
// join
87+
<-planCh
88+
89+
err = errors.Join(planErr, humanPlanErr)
7290
if err != nil {
7391
return nil, fmt.Errorf("error running show plan: %w", err)
7492
}
7593

94+
logger.Log(ctx, Debug, humanPlan)
95+
7696
return plan, nil
7797
}

0 commit comments

Comments
 (0)