github.com/hashicorp/terraform-plugin-sdk@v1.17.2/internal/states/output_value.go (about)

     1  package states
     2  
     3  import (
     4  	"github.com/zclconf/go-cty/cty"
     5  )
     6  
     7  // OutputValue represents the state of a particular output value.
     8  //
     9  // It is not valid to mutate an OutputValue object once it has been created.
    10  // Instead, create an entirely new OutputValue to replace the previous one.
    11  type OutputValue struct {
    12  	Value     cty.Value
    13  	Sensitive bool
    14  }