state.go 332 B

12345678910
  1. package types
  2. type TFState struct {
  3. Version int `json:"version"`
  4. TerraformVersion string `json:"terraform_version"`
  5. Serial int `json:"serial"`
  6. Lineage string `json:"lineage"`
  7. Outputs interface{} `json:"outputs"`
  8. Resources interface{} `json:"resources"`
  9. }