terraform-provider-google/vendor/github.com/hashicorp/terraform/states/output_value.go
2019-02-26 14:56:13 -08:00

15 lines
348 B
Go

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
}