github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/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 }