You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/states/output_value.go

15 lines
348 B

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
}