mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
22 lines
576 B
Go
22 lines
576 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package states
|
|
|
|
import (
|
|
"github.com/opentofu/opentofu/internal/addrs"
|
|
"github.com/zclconf/go-cty/cty"
|
|
)
|
|
|
|
// OutputValue represents the state of a particular output value.
|
|
//
|
|
// It is not valid to mutate an OutputValue object once it has been created.
|
|
// Instead, create an entirely new OutputValue to replace the previous one.
|
|
type OutputValue struct {
|
|
Addr addrs.AbsOutputValue
|
|
Value cty.Value
|
|
Sensitive bool
|
|
}
|