github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/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  }