We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Complete
1 parent 5e08e15 commit 7e28e2dCopy full SHA for 7e28e2d
plan.go
@@ -66,7 +66,10 @@ type Plan struct {
66
67
// Complete indicates that all resources have successfully planned changes.
68
// This will be false if there are DeferredChanges or if the -target flag is used.
69
- Complete bool `json:"complete,omitempty"`
+ //
70
+ // Complete was introduced in Terraform 1.8 and will be nil for all previous
71
+ // Terraform versions.
72
+ Complete *bool `json:"complete,omitempty"`
73
74
// The change operations for outputs within this plan.
75
OutputChanges map[string]*Change `json:"output_changes,omitempty"`
0 commit comments