github.com/cycloidio/terraform@v1.1.10-0.20220513142504-76d5c768dc63/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  }