github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/terraform/node_value.go (about)

     1  package terraform
     2  
     3  // graphNodeTemporaryValue is implemented by nodes that may represent temporary
     4  // values, which are those not saved to the state file. This includes locals,
     5  // variables, and non-root outputs.
     6  // A boolean return value allows a node which may need to be saved to
     7  // conditionally do so.
     8  type graphNodeTemporaryValue interface {
     9  	temporaryValue() bool
    10  }