2014-08-05 07:04:48 +02:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
|
2016-01-19 20:28:45 +01:00
|
|
|
"github.com/hashicorp/go-multierror"
|
2014-08-05 07:04:48 +02:00
|
|
|
"github.com/hashicorp/hcl"
|
2015-11-08 01:53:42 +01:00
|
|
|
"github.com/hashicorp/hcl/hcl/ast"
|
2015-06-08 07:04:23 +02:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2014-08-05 07:04:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// hclConfigurable is an implementation of configurable that knows
|
|
|
|
// how to turn HCL configuration into a *Config object.
|
|
|
|
type hclConfigurable struct {
|
2015-11-08 01:53:42 +01:00
|
|
|
File string
|
|
|
|
Root *ast.File
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *hclConfigurable) Config() (*Config, error) {
|
|
|
|
validKeys := map[string]struct{}{
|
2015-03-05 21:56:31 +01:00
|
|
|
"atlas": struct{}{},
|
2014-09-12 00:58:30 +02:00
|
|
|
"module": struct{}{},
|
2014-08-05 07:04:48 +02:00
|
|
|
"output": struct{}{},
|
|
|
|
"provider": struct{}{},
|
|
|
|
"resource": struct{}{},
|
|
|
|
"variable": struct{}{},
|
|
|
|
}
|
|
|
|
|
|
|
|
type hclVariable struct {
|
2016-01-21 20:33:16 +01:00
|
|
|
Default interface{}
|
|
|
|
Description string
|
|
|
|
DeclaredType string `hcl:"type"`
|
|
|
|
Fields []string `hcl:",decodedFields"`
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var rawConfig struct {
|
|
|
|
Variable map[string]*hclVariable
|
|
|
|
}
|
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// Top-level item should be the object list
|
|
|
|
list, ok := t.Root.Node.(*ast.ObjectList)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("error parsing: file doesn't contain a root object")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := hcl.DecodeObject(&rawConfig, list); err != nil {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start building up the actual configuration. We start with
|
|
|
|
// variables.
|
|
|
|
// TODO(mitchellh): Make function like loadVariablesHcl so that
|
|
|
|
// duplicates aren't overriden
|
|
|
|
config := new(Config)
|
|
|
|
if len(rawConfig.Variable) > 0 {
|
|
|
|
config.Variables = make([]*Variable, 0, len(rawConfig.Variable))
|
|
|
|
for k, v := range rawConfig.Variable {
|
|
|
|
// Defaults turn into a slice of map[string]interface{} and
|
|
|
|
// we need to make sure to convert that down into the
|
|
|
|
// proper type for Config.
|
|
|
|
if ms, ok := v.Default.([]map[string]interface{}); ok {
|
|
|
|
def := make(map[string]interface{})
|
|
|
|
for _, m := range ms {
|
|
|
|
for k, v := range m {
|
|
|
|
def[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Default = def
|
|
|
|
}
|
|
|
|
|
|
|
|
newVar := &Variable{
|
2016-01-21 20:33:16 +01:00
|
|
|
Name: k,
|
|
|
|
DeclaredType: v.DeclaredType,
|
|
|
|
Default: v.Default,
|
|
|
|
Description: v.Description,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := newVar.ValidateTypeAndDefault(); err != nil {
|
|
|
|
return nil, err
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
config.Variables = append(config.Variables, newVar)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-05 21:56:31 +01:00
|
|
|
// Get Atlas configuration
|
2015-11-08 01:53:42 +01:00
|
|
|
if atlas := list.Filter("atlas"); len(atlas.Items) > 0 {
|
2015-03-05 21:56:31 +01:00
|
|
|
var err error
|
|
|
|
config.Atlas, err = loadAtlasHcl(atlas)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-12 00:58:30 +02:00
|
|
|
// Build the modules
|
2015-11-08 01:53:42 +01:00
|
|
|
if modules := list.Filter("module"); len(modules.Items) > 0 {
|
2014-09-12 00:58:30 +02:00
|
|
|
var err error
|
|
|
|
config.Modules, err = loadModulesHcl(modules)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-05 07:04:48 +02:00
|
|
|
// Build the provider configs
|
2015-11-08 01:53:42 +01:00
|
|
|
if providers := list.Filter("provider"); len(providers.Items) > 0 {
|
2014-08-05 07:04:48 +02:00
|
|
|
var err error
|
|
|
|
config.ProviderConfigs, err = loadProvidersHcl(providers)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the resources
|
2015-11-08 01:53:42 +01:00
|
|
|
if resources := list.Filter("resource"); len(resources.Items) > 0 {
|
2014-08-05 07:04:48 +02:00
|
|
|
var err error
|
|
|
|
config.Resources, err = loadResourcesHcl(resources)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the outputs
|
2015-11-08 01:53:42 +01:00
|
|
|
if outputs := list.Filter("output"); len(outputs.Items) > 0 {
|
2014-08-05 07:04:48 +02:00
|
|
|
var err error
|
|
|
|
config.Outputs, err = loadOutputsHcl(outputs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for invalid keys
|
2015-11-08 01:53:42 +01:00
|
|
|
for _, item := range list.Items {
|
|
|
|
if len(item.Keys) == 0 {
|
|
|
|
// Not sure how this would happen, but let's avoid a panic
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
k := item.Keys[0].Token.Value().(string)
|
2014-08-05 07:04:48 +02:00
|
|
|
if _, ok := validKeys[k]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
config.unknownKeys = append(config.unknownKeys, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadFileHcl is a fileLoaderFunc that knows how to read HCL
|
|
|
|
// files and turn them into hclConfigurables.
|
|
|
|
func loadFileHcl(root string) (configurable, []string, error) {
|
|
|
|
// Read the HCL file and prepare for parsing
|
|
|
|
d, err := ioutil.ReadFile(root)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf(
|
|
|
|
"Error reading %s: %s", root, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse it
|
2015-11-08 01:53:42 +01:00
|
|
|
hclRoot, err := hcl.Parse(string(d))
|
2014-08-05 07:04:48 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf(
|
|
|
|
"Error parsing %s: %s", root, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start building the result
|
|
|
|
result := &hclConfigurable{
|
2015-11-08 01:53:42 +01:00
|
|
|
File: root,
|
|
|
|
Root: hclRoot,
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dive in, find the imports. This is disabled for now since
|
|
|
|
// imports were removed prior to Terraform 0.1. The code is
|
|
|
|
// remaining here commented for historical purposes.
|
|
|
|
/*
|
|
|
|
imports := obj.Get("import")
|
|
|
|
if imports == nil {
|
|
|
|
result.Object.Ref()
|
|
|
|
return result, nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if imports.Type() != libucl.ObjectTypeString {
|
|
|
|
imports.Close()
|
|
|
|
|
|
|
|
return nil, nil, fmt.Errorf(
|
|
|
|
"Error in %s: all 'import' declarations should be in the format\n"+
|
|
|
|
"`import \"foo\"` (Got type %s)",
|
|
|
|
root,
|
|
|
|
imports.Type())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gather all the import paths
|
|
|
|
importPaths := make([]string, 0, imports.Len())
|
|
|
|
iter := imports.Iterate(false)
|
|
|
|
for imp := iter.Next(); imp != nil; imp = iter.Next() {
|
|
|
|
path := imp.ToString()
|
|
|
|
if !filepath.IsAbs(path) {
|
|
|
|
// Relative paths are relative to the Terraform file itself
|
|
|
|
dir := filepath.Dir(root)
|
|
|
|
path = filepath.Join(dir, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
importPaths = append(importPaths, path)
|
|
|
|
imp.Close()
|
|
|
|
}
|
|
|
|
iter.Close()
|
|
|
|
imports.Close()
|
|
|
|
|
|
|
|
result.Object.Ref()
|
|
|
|
*/
|
|
|
|
|
|
|
|
return result, nil, nil
|
|
|
|
}
|
|
|
|
|
2015-03-05 21:56:31 +01:00
|
|
|
// Given a handle to a HCL object, this transforms it into the Atlas
|
|
|
|
// configuration.
|
2015-11-08 01:53:42 +01:00
|
|
|
func loadAtlasHcl(list *ast.ObjectList) (*AtlasConfig, error) {
|
|
|
|
if len(list.Items) > 1 {
|
|
|
|
return nil, fmt.Errorf("only one 'atlas' block allowed")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get our one item
|
|
|
|
item := list.Items[0]
|
|
|
|
|
2015-03-05 21:56:31 +01:00
|
|
|
var config AtlasConfig
|
2015-11-08 01:53:42 +01:00
|
|
|
if err := hcl.DecodeObject(&config, item.Val); err != nil {
|
2015-03-05 21:56:31 +01:00
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading atlas config: %s",
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &config, nil
|
|
|
|
}
|
|
|
|
|
2014-09-12 00:58:30 +02:00
|
|
|
// Given a handle to a HCL object, this recurses into the structure
|
|
|
|
// and pulls out a list of modules.
|
|
|
|
//
|
|
|
|
// The resulting modules may not be unique, but each module
|
|
|
|
// represents exactly one module definition in the HCL configuration.
|
|
|
|
// We leave it up to another pass to merge them together.
|
2015-11-08 01:53:42 +01:00
|
|
|
func loadModulesHcl(list *ast.ObjectList) ([]*Module, error) {
|
|
|
|
list = list.Children()
|
|
|
|
if len(list.Items) == 0 {
|
|
|
|
return nil, nil
|
2014-09-12 00:58:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Where all the results will go
|
|
|
|
var result []*Module
|
|
|
|
|
|
|
|
// Now go over all the types and their children in order to get
|
|
|
|
// all of the actual resources.
|
2015-11-08 01:53:42 +01:00
|
|
|
for _, item := range list.Items {
|
|
|
|
k := item.Keys[0].Token.Value().(string)
|
|
|
|
|
|
|
|
var listVal *ast.ObjectList
|
|
|
|
if ot, ok := item.Val.(*ast.ObjectType); ok {
|
|
|
|
listVal = ot.List
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("module '%s': should be an object", k)
|
|
|
|
}
|
2014-09-12 00:58:30 +02:00
|
|
|
|
2014-09-14 23:43:54 +02:00
|
|
|
var config map[string]interface{}
|
2015-11-08 01:53:42 +01:00
|
|
|
if err := hcl.DecodeObject(&config, item.Val); err != nil {
|
2014-09-14 23:43:54 +02:00
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for %s: %s",
|
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
2014-09-12 00:58:30 +02:00
|
|
|
|
2014-09-14 23:43:54 +02:00
|
|
|
// Remove the fields we handle specially
|
|
|
|
delete(config, "source")
|
2014-09-12 00:58:30 +02:00
|
|
|
|
2014-09-14 23:43:54 +02:00
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for %s: %s",
|
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a count, then figure it out
|
|
|
|
var source string
|
2015-11-08 01:53:42 +01:00
|
|
|
if o := listVal.Filter("source"); len(o.Items) > 0 {
|
|
|
|
err = hcl.DecodeObject(&source, o.Items[0].Val)
|
2014-09-12 00:58:30 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
2014-09-14 23:43:54 +02:00
|
|
|
"Error parsing source for %s: %s",
|
2014-09-12 00:58:30 +02:00
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
}
|
2014-09-14 23:43:54 +02:00
|
|
|
|
|
|
|
result = append(result, &Module{
|
|
|
|
Name: k,
|
|
|
|
Source: source,
|
|
|
|
RawConfig: rawConfig,
|
|
|
|
})
|
2014-09-12 00:58:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2014-08-05 07:04:48 +02:00
|
|
|
// LoadOutputsHcl recurses into the given HCL object and turns
|
|
|
|
// it into a mapping of outputs.
|
2015-11-08 01:53:42 +01:00
|
|
|
func loadOutputsHcl(list *ast.ObjectList) ([]*Output, error) {
|
|
|
|
list = list.Children()
|
|
|
|
if len(list.Items) == 0 {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go through each object and turn it into an actual result.
|
2015-11-08 01:53:42 +01:00
|
|
|
result := make([]*Output, 0, len(list.Items))
|
|
|
|
for _, item := range list.Items {
|
|
|
|
n := item.Keys[0].Token.Value().(string)
|
2014-08-05 07:04:48 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
var config map[string]interface{}
|
|
|
|
if err := hcl.DecodeObject(&config, item.Val); err != nil {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for output %s: %s",
|
|
|
|
n,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result = append(result, &Output{
|
|
|
|
Name: n,
|
|
|
|
RawConfig: rawConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadProvidersHcl recurses into the given HCL object and turns
|
|
|
|
// it into a mapping of provider configs.
|
2015-11-08 01:53:42 +01:00
|
|
|
func loadProvidersHcl(list *ast.ObjectList) ([]*ProviderConfig, error) {
|
|
|
|
list = list.Children()
|
|
|
|
if len(list.Items) == 0 {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go through each object and turn it into an actual result.
|
2015-11-08 01:53:42 +01:00
|
|
|
result := make([]*ProviderConfig, 0, len(list.Items))
|
|
|
|
for _, item := range list.Items {
|
|
|
|
n := item.Keys[0].Token.Value().(string)
|
|
|
|
|
|
|
|
var listVal *ast.ObjectList
|
|
|
|
if ot, ok := item.Val.(*ast.ObjectType); ok {
|
|
|
|
listVal = ot.List
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("module '%s': should be an object", n)
|
|
|
|
}
|
2014-08-05 07:04:48 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
var config map[string]interface{}
|
|
|
|
if err := hcl.DecodeObject(&config, item.Val); err != nil {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-03-23 23:36:53 +01:00
|
|
|
delete(config, "alias")
|
|
|
|
|
2014-08-05 07:04:48 +02:00
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for provider config %s: %s",
|
2015-11-08 01:53:42 +01:00
|
|
|
n,
|
2014-08-05 07:04:48 +02:00
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
2015-03-23 23:36:53 +01:00
|
|
|
// If we have an alias field, then add those in
|
|
|
|
var alias string
|
2015-11-08 01:53:42 +01:00
|
|
|
if a := listVal.Filter("alias"); len(a.Items) > 0 {
|
|
|
|
err := hcl.DecodeObject(&alias, a.Items[0].Val)
|
2015-03-23 23:36:53 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading alias for provider[%s]: %s",
|
2015-11-08 01:53:42 +01:00
|
|
|
n,
|
2015-03-23 23:36:53 +01:00
|
|
|
err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-05 07:04:48 +02:00
|
|
|
result = append(result, &ProviderConfig{
|
2015-11-08 01:53:42 +01:00
|
|
|
Name: n,
|
2015-03-23 23:36:53 +01:00
|
|
|
Alias: alias,
|
2014-08-05 07:04:48 +02:00
|
|
|
RawConfig: rawConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Given a handle to a HCL object, this recurses into the structure
|
|
|
|
// and pulls out a list of resources.
|
|
|
|
//
|
|
|
|
// The resulting resources may not be unique, but each resource
|
|
|
|
// represents exactly one resource definition in the HCL configuration.
|
|
|
|
// We leave it up to another pass to merge them together.
|
2015-11-08 01:53:42 +01:00
|
|
|
func loadResourcesHcl(list *ast.ObjectList) ([]*Resource, error) {
|
|
|
|
list = list.Children()
|
|
|
|
if len(list.Items) == 0 {
|
|
|
|
return nil, nil
|
2014-08-12 06:51:24 +02:00
|
|
|
}
|
2014-08-05 07:04:48 +02:00
|
|
|
|
|
|
|
// Where all the results will go
|
|
|
|
var result []*Resource
|
|
|
|
|
|
|
|
// Now go over all the types and their children in order to get
|
|
|
|
// all of the actual resources.
|
2015-11-08 01:53:42 +01:00
|
|
|
for _, item := range list.Items {
|
2016-01-19 21:19:32 +01:00
|
|
|
// GH-4385: We detect a pure provisioner resource and give the user
|
|
|
|
// an error about how to do it cleanly.
|
|
|
|
if len(item.Keys) == 4 && item.Keys[2].Token.Value().(string) == "provisioner" {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"position %s: provisioners in a resource should be wrapped in a list\n\n"+
|
|
|
|
"Example: \"provisioner\": [ { \"local-exec\": ... } ]",
|
|
|
|
item.Pos())
|
|
|
|
}
|
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
if len(item.Keys) != 2 {
|
2015-12-10 01:05:49 +01:00
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"position %s: resource must be followed by exactly two strings, a type and a name",
|
|
|
|
item.Pos())
|
2015-11-08 01:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
t := item.Keys[0].Token.Value().(string)
|
|
|
|
k := item.Keys[1].Token.Value().(string)
|
|
|
|
|
|
|
|
var listVal *ast.ObjectList
|
|
|
|
if ot, ok := item.Val.(*ast.ObjectType); ok {
|
|
|
|
listVal = ot.List
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("resources %s[%s]: should be an object", t, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
var config map[string]interface{}
|
|
|
|
if err := hcl.DecodeObject(&config, item.Val); err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the fields we handle specially
|
|
|
|
delete(config, "connection")
|
|
|
|
delete(config, "count")
|
|
|
|
delete(config, "depends_on")
|
|
|
|
delete(config, "provisioner")
|
|
|
|
delete(config, "provider")
|
|
|
|
delete(config, "lifecycle")
|
|
|
|
|
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
2014-08-12 06:51:24 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// If we have a count, then figure it out
|
|
|
|
var count string = "1"
|
|
|
|
if o := listVal.Filter("count"); len(o.Items) > 0 {
|
|
|
|
err = hcl.DecodeObject(&count, o.Items[0].Val)
|
|
|
|
if err != nil {
|
2014-08-12 06:51:24 +02:00
|
|
|
return nil, fmt.Errorf(
|
2015-11-08 01:53:42 +01:00
|
|
|
"Error parsing count for %s[%s]: %s",
|
|
|
|
t,
|
2014-08-12 06:51:24 +02:00
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
2015-11-08 01:53:42 +01:00
|
|
|
}
|
|
|
|
countConfig, err := NewRawConfig(map[string]interface{}{
|
|
|
|
"count": count,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
countConfig.Key = "count"
|
2014-08-12 06:51:24 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// If we have depends fields, then add those in
|
|
|
|
var dependsOn []string
|
|
|
|
if o := listVal.Filter("depends_on"); len(o.Items) > 0 {
|
|
|
|
err := hcl.DecodeObject(&dependsOn, o.Items[0].Val)
|
2014-08-12 06:51:24 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
2015-11-08 01:53:42 +01:00
|
|
|
"Error reading depends_on for %s[%s]: %s",
|
|
|
|
t,
|
2014-08-12 06:51:24 +02:00
|
|
|
k,
|
|
|
|
err)
|
|
|
|
}
|
2015-11-08 01:53:42 +01:00
|
|
|
}
|
2014-08-05 07:04:48 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// If we have connection info, then parse those out
|
|
|
|
var connInfo map[string]interface{}
|
|
|
|
if o := listVal.Filter("connection"); len(o.Items) > 0 {
|
|
|
|
err := hcl.DecodeObject(&connInfo, o.Items[0].Val)
|
2014-10-02 20:14:50 +02:00
|
|
|
if err != nil {
|
2015-11-08 01:53:42 +01:00
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading connection info for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
2014-08-12 06:51:24 +02:00
|
|
|
}
|
2015-11-08 01:53:42 +01:00
|
|
|
}
|
2014-08-05 07:04:48 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// If we have provisioners, then parse those out
|
|
|
|
var provisioners []*Provisioner
|
|
|
|
if os := listVal.Filter("provisioner"); len(os.Items) > 0 {
|
|
|
|
var err error
|
|
|
|
provisioners, err = loadProvisionersHcl(os, connInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading provisioners for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
2014-08-12 06:51:24 +02:00
|
|
|
}
|
2015-11-08 01:53:42 +01:00
|
|
|
}
|
2014-08-05 07:04:48 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// If we have a provider, then parse it out
|
|
|
|
var provider string
|
|
|
|
if o := listVal.Filter("provider"); len(o.Items) > 0 {
|
|
|
|
err := hcl.DecodeObject(&provider, o.Items[0].Val)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading provider for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
2015-11-08 01:53:42 +01:00
|
|
|
}
|
2014-08-12 06:51:24 +02:00
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// Check if the resource should be re-created before
|
|
|
|
// destroying the existing instance
|
|
|
|
var lifecycle ResourceLifecycle
|
|
|
|
if o := listVal.Filter("lifecycle"); len(o.Items) > 0 {
|
2016-01-19 20:28:45 +01:00
|
|
|
// Check for invalid keys
|
|
|
|
valid := []string{"create_before_destroy", "ignore_changes", "prevent_destroy"}
|
|
|
|
if err := checkHCLKeys(o.Items[0].Val, valid); err != nil {
|
|
|
|
return nil, multierror.Prefix(err, fmt.Sprintf(
|
|
|
|
"%s[%s]:", t, k))
|
|
|
|
}
|
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
var raw map[string]interface{}
|
|
|
|
if err = hcl.DecodeObject(&raw, o.Items[0].Val); err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error parsing lifecycle for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
2015-03-23 23:36:53 +01:00
|
|
|
}
|
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
if err := mapstructure.WeakDecode(raw, &lifecycle); err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error parsing lifecycle for %s[%s]: %s",
|
|
|
|
t,
|
|
|
|
k,
|
|
|
|
err)
|
2014-09-22 22:31:20 +02:00
|
|
|
}
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
2015-11-08 01:53:42 +01:00
|
|
|
|
|
|
|
result = append(result, &Resource{
|
|
|
|
Name: k,
|
|
|
|
Type: t,
|
|
|
|
RawCount: countConfig,
|
|
|
|
RawConfig: rawConfig,
|
|
|
|
Provisioners: provisioners,
|
|
|
|
Provider: provider,
|
|
|
|
DependsOn: dependsOn,
|
|
|
|
Lifecycle: lifecycle,
|
|
|
|
})
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
func loadProvisionersHcl(list *ast.ObjectList, connInfo map[string]interface{}) ([]*Provisioner, error) {
|
|
|
|
list = list.Children()
|
|
|
|
if len(list.Items) == 0 {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2015-11-08 01:53:42 +01:00
|
|
|
// Go through each object and turn it into an actual result.
|
|
|
|
result := make([]*Provisioner, 0, len(list.Items))
|
|
|
|
for _, item := range list.Items {
|
|
|
|
n := item.Keys[0].Token.Value().(string)
|
|
|
|
|
|
|
|
var listVal *ast.ObjectList
|
|
|
|
if ot, ok := item.Val.(*ast.ObjectType); ok {
|
|
|
|
listVal = ot.List
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("provisioner '%s': should be an object", n)
|
|
|
|
}
|
|
|
|
|
2014-08-05 07:04:48 +02:00
|
|
|
var config map[string]interface{}
|
2015-11-08 01:53:42 +01:00
|
|
|
if err := hcl.DecodeObject(&config, item.Val); err != nil {
|
2014-08-05 07:04:48 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-11 20:56:20 +02:00
|
|
|
// Delete the "connection" section, handle separately
|
2014-08-05 07:04:48 +02:00
|
|
|
delete(config, "connection")
|
|
|
|
|
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we have a provisioner-level connection
|
|
|
|
// block that overrides the resource-level
|
|
|
|
var subConnInfo map[string]interface{}
|
2015-11-08 01:53:42 +01:00
|
|
|
if o := listVal.Filter("connection"); len(o.Items) > 0 {
|
|
|
|
err := hcl.DecodeObject(&subConnInfo, o.Items[0].Val)
|
2014-08-12 06:51:24 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inherit from the resource connInfo any keys
|
|
|
|
// that are not explicitly overriden.
|
|
|
|
if connInfo != nil && subConnInfo != nil {
|
|
|
|
for k, v := range connInfo {
|
|
|
|
if _, ok := subConnInfo[k]; !ok {
|
|
|
|
subConnInfo[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if subConnInfo == nil {
|
|
|
|
subConnInfo = connInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the connInfo
|
|
|
|
connRaw, err := NewRawConfig(subConnInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
result = append(result, &Provisioner{
|
2015-11-08 01:53:42 +01:00
|
|
|
Type: n,
|
2014-08-05 07:04:48 +02:00
|
|
|
RawConfig: rawConfig,
|
|
|
|
ConnInfo: connRaw,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2014-08-12 06:51:24 +02:00
|
|
|
/*
|
|
|
|
func hclObjectMap(os *hclobj.Object) map[string]ast.ListNode {
|
|
|
|
objects := make(map[string][]*hclobj.Object)
|
2014-08-05 07:04:48 +02:00
|
|
|
|
2014-08-12 06:51:24 +02:00
|
|
|
for _, o := range os.Elem(false) {
|
|
|
|
for _, elem := range o.Elem(true) {
|
|
|
|
val, ok := objects[elem.Key]
|
2014-08-05 07:04:48 +02:00
|
|
|
if !ok {
|
2014-08-12 06:51:24 +02:00
|
|
|
val = make([]*hclobj.Object, 0, 1)
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
|
2014-08-12 06:51:24 +02:00
|
|
|
val = append(val, elem)
|
|
|
|
objects[elem.Key] = val
|
2014-08-05 07:04:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return objects
|
|
|
|
}
|
2014-08-12 06:51:24 +02:00
|
|
|
*/
|
2016-01-19 20:28:45 +01:00
|
|
|
|
|
|
|
func checkHCLKeys(node ast.Node, valid []string) error {
|
|
|
|
var list *ast.ObjectList
|
|
|
|
switch n := node.(type) {
|
|
|
|
case *ast.ObjectList:
|
|
|
|
list = n
|
|
|
|
case *ast.ObjectType:
|
|
|
|
list = n.List
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("cannot check HCL keys of type %T", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
validMap := make(map[string]struct{}, len(valid))
|
|
|
|
for _, v := range valid {
|
|
|
|
validMap[v] = struct{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var result error
|
|
|
|
for _, item := range list.Items {
|
|
|
|
key := item.Keys[0].Token.Value().(string)
|
|
|
|
if _, ok := validMap[key]; !ok {
|
|
|
|
result = multierror.Append(result, fmt.Errorf(
|
|
|
|
"invalid key: %s", key))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|