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

70 lines
1.3 KiB
Go

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
}
// 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 {
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
}
if r.IsSupported() {
inst = append(inst, r)
}
}
}
return inst
}
type moduleState struct {
ResourceStates map[string]resourceState `json:"resources"`
}
type resourceState struct {
// Populated from statefile
Type string `json:"type"`
Primary instanceState `json:"primary"`
}
type instanceState struct {
ID string `json:"id"`
Attributes map[string]string `json:"attributes,omitempty"`
}