terraform/vendor/github.com/hashicorp/hil/eval_type.go

17 lines
280 B
Go
Raw Normal View History

2016-08-18 21:10:16 +02:00
package hil
//go:generate stringer -type=EvalType eval_type.go
// EvalType represents the type of the output returned from a HIL
// evaluation.
type EvalType uint32
const (
TypeInvalid EvalType = 0
TypeString EvalType = 1 << iota
2016-11-13 19:28:26 +01:00
TypeBool
2016-08-18 21:10:16 +02:00
TypeList
TypeMap
2016-10-27 17:34:00 +02:00
TypeUnknown
2016-08-18 21:10:16 +02:00
)