core: EvalReadDataDiff to output direct config value alongside planned

We're now writing the "planned new value" to OutputValue, but the data
resource nodes during refresh need to see the verbatim config value in
order to decide whether read must be deferred to the apply phase, so we'll
optionally export that here too.
This commit is contained in:
Martin Atkins 2018-08-28 16:38:37 -07:00
parent 20adb9d9b7
commit 182e783885
2 changed files with 14 additions and 11 deletions

View File

@ -24,6 +24,7 @@ type EvalReadDataDiff struct {
Output **plans.ResourceInstanceChange
OutputValue *cty.Value
OutputConfigValue *cty.Value
OutputState **states.ResourceInstanceObject
// Set Previous when re-evaluating diff during apply, to ensure that
@ -114,10 +115,12 @@ func (n *EvalReadDataDiff) Eval(ctx EvalContext) (interface{}, error) {
if n.Output != nil {
*n.Output = change
}
if n.OutputValue != nil {
*n.OutputValue = change.After
}
if n.OutputConfigValue != nil {
*n.OutputConfigValue = configVal
}
if n.OutputState != nil {
state := &states.ResourceInstanceObject{

View File

@ -150,7 +150,7 @@ func (n *NodeRefreshableDataResourceInstance) EvalTree() EvalNode {
ProviderAddr: n.ResolvedProvider,
ProviderSchema: &providerSchema,
Output: &change,
OutputValue: &configVal,
OutputConfigValue: &configVal,
OutputState: &state,
},