aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/states/output_value.go
blob: d232b76d4040b65540cae9bc998806ea7d9ccf92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package states

import (
	"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 {
	Value     cty.Value
	Sensitive bool
}