mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
Only used in targets for now. The plan is to use this for interpolation as well. This allows us to target: * individual resources expanded by `count` using bracket / index notation. * deposed / tainted resources with an `InstanceType` field after name Docs to follow.
14 lines
263 B
Go
14 lines
263 B
Go
package terraform
|
|
|
|
//go:generate 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
|
|
)
|