README ¶
Terraform YAML Data Source
Overview
This provider defines a Terraform data source that can consume YAML input [as a string] and parse a map out of it. Map keys and values should be both strings. If map values are not strings they are going to be serialized using YAML flow style (resembles JSON but less restrictive). Nested maps can be optionally flattened with a given separator.
Please note that JSON is subset of YAML and therefore this data source can be used to parse arbitrary JSON as well.
Data Sources
This plugin defines following data sources:
yaml_map_of_strings
yaml_list_of_strings
Reference
Arguments
The following arguments are supported:
input
- (Required) A string that will be parsed. Should be a valid YAML, YAML flow or JSON.flatten
- (Optional) [onlyyaml_map_of_strings
] A string that should be used as a separator in order to flatten nested maps. If set to a non-empty value nested maps going to be flattened.
Attributes
The following attribute is exported:
output
- Map with keys and values as strings foryaml_map_of_strings
and list of strings foryaml_list_of_strings
.
Limitations
Boolean Conversion
The underlying parser converts y
into a boolean that can be serialized as a true. For instance {foo: y}
will be parsed
as {foo: true}
. In order to avoid such behavior prefer using explicit string declaration with quotes: {foo: "y"}
.
Installation
Terraform automatically discovers the Providers when it parses configuration files. This only occurs when the init command is executed.
Currently Terraform is able to automatically download only official plugins distributed by HashiCorp.
All other plugins should be installed manually.
Terraform will search for matching Providers via a Discovery process, including the current local directory.
This means that the plugin should either be placed into current working directory where Terraform will be executed from or it can be installed system-wide.
Usage
main.tf
locals {input="input.yaml"}
data "yaml_map_of_strings" "normal" { input = "${file(local.input)}" }
data "yaml_map_of_strings" "flat" { input = "${file(local.input)}" flatten="/" }
data "yaml_list_of_strings" "list" { input = "${data.yaml_map_of_strings.normal.output["list"]}" }
output "normal" { value = "${data.yaml_map_of_strings.normal.output}" }
output "flat" { value = "${data.yaml_map_of_strings.flat.output}" }
output "list" { value = "${data.yaml_list_of_strings.list.output}" }
Download
$ wget "https://github.com/ashald/terraform-provider-yaml/releases/download/v2.0.0/terraform-provider-yaml_v2.0.0-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
$ chmod +x ./terraform-provider-yaml*
Init
$ ls -1
main.tf
terraform-provider-yaml_v2.0.0-linux-amd64
$ terraform init
Initializing provider plugins...
The following providers do not have any version constraints in configuration,
so the latest version was installed.
To prevent automatic upgrades to new major versions that may contain breaking
changes, it is recommended to add version = "..." constraints to the
corresponding provider blocks in configuration, with the constraint strings
suggested below.
* provider.yaml: version = "~> 2.0"
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
Apply
$ cat > input.yaml << EOF
a:
b:
c: foobar
list:
- foo
- bar
EOF
$ terraform apply
data.yaml_map_of_strings.normal: Refreshing state...
data.yaml_map_of_strings.flat: Refreshing state...
data.yaml_list_of_strings.list: Refreshing state...
Apply complete! Resources: 0 added, 0 changed, 0 destroyed.
Outputs:
flat = {
a/b/c = foobar
list = [foo, bar]
}
list = [
foo,
bar
]
normal = {
a = {b: {c: foobar}}
list = [foo, bar]
}
Development
Go
In order to work on the provider, Go should be installed first (version 1.8+ is required).
goenv and gvm are great utilities that can help a
lot with that and simplify setup tremendously.
GOPATH should be setup correctly and as long as $GOPATH/bin
should be
added $PATH
.
Source Code
Source code can be retrieved either with go get
$ go get -u -d github.com/ashald/terraform-provider-yaml
or with git
$ mkdir -p ${GOPATH}/src/github.com/ashald/terraform-provider-yaml
$ cd ${GOPATH}/src/github.com/ashald/terraform-provider-yaml
$ git clone git@github.com:ashald/terraform-provider-yaml.git .
Dependencies
This project uses govendor
to manage its dependencies. When adding a dependency on a new package it should be fetched
with:
$ govendor fetch +o
Test
$ make test
go test -v ./...
? github.com/ashald/terraform-provider-yaml [no test files]
=== RUN TestYamlDataSource
--- PASS: TestYamlDataSource (0.06s)
=== RUN TestProvider
--- PASS: TestProvider (0.00s)
PASS
ok github.com/ashald/terraform-provider-yaml/yaml 0.092s
go vet ./...
Build
In order to build plugin for the current platform use [GNU]make:
$ make build
go build -o terraform-provider-yaml_v2.0.0
it will build provider from sources and put it into current working directory.
If Terraform was installed (as a binary) or via go get -u github.com/hashicorp/terraform
it'll pick up the plugin if
executed against a configuration in the same directory.
Release
In order to prepare provider binaries for all platforms:
$ make release
GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-yaml_v2.0.0-darwin-amd64'
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-yaml_v2.0.0-linux-amd64'
Versioning
This project follow Semantic Versioning
Changelog
This project follows keep a changelog guidelines for changelog.
Contributors
Please see CONTRIBUTORS.md
License
This is free and unencumbered software released into the public domain. See LICENSE
Documentation ¶
There is no documentation for this package.