mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06:00
14 lines
293 B
Go
14 lines
293 B
Go
package terraform
|
|
|
|
//go:generate go run golang.org/x/tools/cmd/stringer -type=InstanceType instancetype.go
|
|
|
|
// InstanceType is an enum of the various types of instances store in the State
|
|
type InstanceType int
|
|
|
|
const (
|
|
TypeInvalid InstanceType = iota
|
|
TypePrimary
|
|
TypeTainted
|
|
TypeDeposed
|
|
)
|