terraform/config/interpolate_funcs.go

72 lines
1.6 KiB
Go
Raw Normal View History

2014-07-21 21:56:03 +02:00
package config
2014-07-21 22:12:43 +02:00
import (
2014-08-19 22:14:45 +02:00
"bytes"
2014-07-21 22:12:43 +02:00
"fmt"
"io/ioutil"
2014-07-21 22:12:43 +02:00
"strings"
)
2014-07-21 21:56:03 +02:00
// Funcs is the mapping of built-in functions for configuration.
var Funcs map[string]InterpolationFunc
func init() {
Funcs = map[string]InterpolationFunc{
2014-08-19 22:14:45 +02:00
"concat": interpolationFuncConcat,
"file": interpolationFuncFile,
2014-07-21 21:56:03 +02:00
"lookup": interpolationFuncLookup,
}
}
2014-08-19 22:14:45 +02:00
// interpolationFuncConcat implements the "concat" function that allows
// strings to be joined together.
func interpolationFuncConcat(
vs map[string]string, args ...string) (string, error) {
var buf bytes.Buffer
for _, a := range args {
if _, err := buf.WriteString(a); err != nil {
return "", err
}
}
return buf.String(), nil
}
// interpolationFuncFile implements the "file" function that allows
// loading contents from a file.
func interpolationFuncFile(
vs map[string]string, args ...string) (string, error) {
if len(args) != 1 {
return "", fmt.Errorf(
"file expects 1 arguments, got %d", len(args))
}
data, err := ioutil.ReadFile(args[0])
if err != nil {
return "", err
}
return string(data), nil
}
2014-07-21 21:56:03 +02:00
// interpolationFuncLookup implements the "lookup" function that allows
// dynamic lookups of map types within a Terraform configuration.
func interpolationFuncLookup(
vs map[string]string, args ...string) (string, error) {
2014-07-21 22:12:43 +02:00
if len(args) != 2 {
return "", fmt.Errorf(
"lookup expects 2 arguments, got %d", len(args))
}
k := fmt.Sprintf("var.%s", strings.Join(args, "."))
v, ok := vs[k]
if !ok {
return "", fmt.Errorf(
"lookup in '%s' failed to find '%s'",
args[0], args[1])
}
return v, nil
2014-07-21 21:56:03 +02:00
}