1
1
mirror of https://github.com/adammck/terraform-inventory synced 2024-09-24 19:20:44 +02:00
terraform-inventory/parser.go

70 lines
1.3 KiB
Go
Raw Normal View History

package main
import (
"encoding/json"
"io"
"io/ioutil"
)
type state struct {
Modules []moduleState `json:"modules"`
}
// read populates the state object from a statefile.
func (s *state) read(stateFile io.Reader) error {
// read statefile contents
b, err := ioutil.ReadAll(stateFile)
if err != nil {
return err
}
// parse into struct
err = json.Unmarshal(b, s)
if err != nil {
return err
}
return nil
}
2015-12-15 04:24:41 +01:00
// resources returns a slice of the Resources found in the statefile.
func (s *state) resources() []*Resource {
inst := make([]*Resource, 0)
for _, m := range s.Modules {
2015-12-15 04:24:41 +01:00
for k, rs := range m.ResourceStates {
// Terraform stores resources in a name->map map, but we need the name to
// decide which groups to include the resource in. So wrap it in a higher-
// level object with both properties.
r, err := NewResource(k, rs)
if err != nil {
continue
}
2015-12-10 04:52:47 +01:00
2015-12-15 04:24:41 +01:00
if r.IsSupported() {
inst = append(inst, r)
}
}
}
return inst
}
type moduleState struct {
2015-12-15 04:24:41 +01:00
ResourceStates map[string]resourceState `json:"resources"`
}
type resourceState struct {
2015-12-10 04:52:47 +01:00
// Populated from statefile
Type string `json:"type"`
Primary instanceState `json:"primary"`
2015-06-05 04:43:56 +02:00
}
type instanceState struct {
ID string `json:"id"`
Attributes map[string]string `json:"attributes,omitempty"`
}