mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
13 lines
489 B
Go
13 lines
489 B
Go
|
package differ
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
|
||
|
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
|
||
|
)
|
||
|
|
||
|
// asDiff is a helper function to abstract away some simple and common
|
||
|
// functionality when converting a renderer into a concrete diff.
|
||
|
func asDiff(change structured.Change, renderer computed.DiffRenderer) computed.Diff {
|
||
|
return computed.NewDiff(renderer, change.CalculateAction(), change.ReplacePaths.Matches())
|
||
|
}
|