From 9c024994b7bbc5928653e8c8039dbd1a694c2510 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 24 Jun 2014 12:54:05 -0700 Subject: [PATCH] terraform: diff has Destroy flag --- terraform/diff.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/diff.go b/terraform/diff.go index 97b7e32d9..d11440c4c 100644 --- a/terraform/diff.go +++ b/terraform/diff.go @@ -147,6 +147,7 @@ func (d *Diff) String() string { // ResourceDiff is the diff of a resource from some state to another. type ResourceDiff struct { Attributes map[string]*ResourceAttrDiff + Destroy bool } // ResourceAttrDiff is the diff of a single attribute of a resource.