terraform: enable provisioners to execute

This commit is contained in:
Mitchell Hashimoto 2016-09-15 09:33:08 -07:00
parent 0f0eecfee7
commit 5220cba77c
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 8 additions and 11 deletions

View File

@ -216,17 +216,14 @@ func (n *NodeApplyableResource) EvalTree() EvalNode {
Dependencies: stateDeps,
State: &state,
},
/*
TODO: this has to work
&EvalApplyProvisioners{
Info: info,
State: &state,
Resource: n.Config,
InterpResource: resource,
CreateNew: &createNew,
Error: &err,
},
*/
&EvalApplyProvisioners{
Info: info,
State: &state,
Resource: n.Config,
InterpResource: resource,
CreateNew: &createNew,
Error: &err,
},
&EvalIf{
If: func(ctx EvalContext) (bool, error) {
return createBeforeDestroyEnabled && err != nil, nil