├── .gitignore ├── .tool-versions ├── .travis.yml ├── LICENSE.md ├── README.md ├── config └── config.exs ├── lib └── terraform.ex ├── mix.exs ├── mix.lock └── test ├── terraform_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | erlang 22.2.1 2 | elixir 1.9.4 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/terraform.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/lib/terraform.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/mix.lock -------------------------------------------------------------------------------- /test/terraform_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/terraform/HEAD/test/terraform_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------