2024-02-08 03:48:59 -06:00
|
|
|
// Copyright (c) The OpenTofu Authors
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 10:33:06 -05:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2023-01-10 10:24:48 -06:00
|
|
|
// Package computed contains types that represent the computed diffs for
|
2023-09-21 07:38:46 -05:00
|
|
|
// OpenTofu blocks, attributes, and outputs.
|
2023-01-10 10:24:48 -06:00
|
|
|
//
|
|
|
|
// Each Diff struct is made up of a renderer, an action, and a boolean
|
|
|
|
// describing the diff. The renderer internally holds child diffs or concrete
|
|
|
|
// values that allow it to know how to render the diff appropriately.
|
|
|
|
package computed
|