mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-13 16:03:15 -05:00
25 lines
705 B
Go
25 lines
705 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package differ
|
|
|
|
import (
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
|
|
)
|
|
|
|
func ComputeDiffForOutput(change structured.Change) computed.Diff {
|
|
if sensitive, ok := checkForSensitiveType(change, cty.DynamicPseudoType); ok {
|
|
return sensitive
|
|
}
|
|
|
|
if unknown, ok := checkForUnknownType(change, cty.DynamicPseudoType); ok {
|
|
return unknown
|
|
}
|
|
|
|
jsonOpts := renderers.RendererJsonOpts()
|
|
return jsonOpts.Transform(change)
|
|
}
|