├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── examples └── tf-example.hs ├── scripts └── generate.hs ├── src └── Language │ └── Terraform │ ├── Aws.hs │ ├── Core.hs │ └── Util │ └── Text.hs ├── stack.yaml └── terraform-hs.cabal /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | *swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /examples/tf-example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/examples/tf-example.hs -------------------------------------------------------------------------------- /scripts/generate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/scripts/generate.hs -------------------------------------------------------------------------------- /src/Language/Terraform/Aws.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/src/Language/Terraform/Aws.hs -------------------------------------------------------------------------------- /src/Language/Terraform/Core.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/src/Language/Terraform/Core.hs -------------------------------------------------------------------------------- /src/Language/Terraform/Util/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/src/Language/Terraform/Util/Text.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/stack.yaml -------------------------------------------------------------------------------- /terraform-hs.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helix-collective/terraform-hs/HEAD/terraform-hs.cabal --------------------------------------------------------------------------------