mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 11:17:35 -05:00
* change -> diff, value -> change * also update readme# * structured plan renderer: refactor replace paths logic * goimports * goimports * address comments * fix compile error
23 lines
844 B
Go
23 lines
844 B
Go
package differ
|
|
|
|
import (
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/collections"
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
|
|
)
|
|
|
|
func (change Change) computeAttributeDiffAsTuple(elementTypes []cty.Type) computed.Diff {
|
|
var elements []computed.Diff
|
|
current := change.getDefaultActionForIteration()
|
|
sliceValue := change.asSlice()
|
|
for ix, elementType := range elementTypes {
|
|
childValue := sliceValue.getChild(ix, ix)
|
|
element := childValue.computeDiffForType(elementType)
|
|
elements = append(elements, element)
|
|
current = collections.CompareActions(current, element.Action)
|
|
}
|
|
return computed.NewDiff(renderers.List(elements), current, change.ReplacePaths.ForcesReplacement())
|
|
}
|