aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/command/format/plan.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/command/format/plan.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/command/format/plan.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/command/format/plan.go b/vendor/github.com/hashicorp/terraform/command/format/plan.go
index 098653f..ef129a9 100644
--- a/vendor/github.com/hashicorp/terraform/command/format/plan.go
+++ b/vendor/github.com/hashicorp/terraform/command/format/plan.go
@@ -83,6 +83,10 @@ func NewPlan(changes *plans.Changes) *Plan {
83 continue 83 continue
84 } 84 }
85 85
86 if rc.Action == plans.NoOp {
87 continue
88 }
89
86 // For now we'll shim this to work with our old types. 90 // For now we'll shim this to work with our old types.
87 // TODO: Update for the new plan types, ideally also switching over to 91 // TODO: Update for the new plan types, ideally also switching over to
88 // a structural diff renderer instead of a flat renderer. 92 // a structural diff renderer instead of a flat renderer.