From d93df76f66206ec4b6df1cd859206da0ecc0a36c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 23 Jun 2014 12:30:29 -0700 Subject: [PATCH] terraform: some comments --- terraform/terraform.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/terraform/terraform.go b/terraform/terraform.go index 2dc3c2337..3a1cdf7be 100644 --- a/terraform/terraform.go +++ b/terraform/terraform.go @@ -142,6 +142,10 @@ func (t *Terraform) applyWalkFn( return nil, err } + // TODO(mitchellh): we need to verify the diff doesn't change + // anything and that the diff has no computed values (pre-computed) + + // With the completed diff, apply! rs, err := r.Provider.Apply(r.State, diff) if err != nil { return nil, err