1
1
mirror of https://github.com/adammck/terraform-inventory synced 2024-11-23 00:12:13 +01:00
terraform-inventory/parser.go

111 lines
2.2 KiB
Go
Raw Normal View History

package main
import (
"encoding/json"
"io"
"io/ioutil"
"sort"
)
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
}
// outputs returns a slice of the Outputs found in the statefile.
func (s *state) outputs() []*Output {
inst := make([]*Output, 0)
for _, m := range s.Modules {
for k, v := range m.Outputs {
2016-09-07 05:05:30 +02:00
var o *Output
switch v := v.(type) {
case map[string]interface{}:
2016-09-07 05:05:30 +02:00
o, _ = NewOutput(k, v["value"])
case string:
o, _ = NewOutput(k, v)
default:
o, _ = NewOutput(k, "<error>")
}
inst = append(inst, o)
}
}
return inst
}
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 {
for _, k := range m.resourceKeys() {
2015-12-15 04:24:41 +01:00
// 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, m.ResourceStates[k])
2015-12-15 04:24:41 +01:00
if err != nil {
continue
}
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"`
Outputs map[string]interface{} `json:"outputs"`
}
// resourceKeys returns a sorted slice of the key names of the resources in this
// module. Do this instead of range over ResourceStates, to ensure that the
// output is consistent.
func (ms *moduleState) resourceKeys() []string {
lk := len(ms.ResourceStates)
keys := make([]string, lk, lk)
i := 0
for k := range ms.ResourceStates {
keys[i] = k
i += 1
}
sort.Strings(keys)
return keys
}
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"`
}