├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── deploy.yml ├── .gitignore ├── .goreleaser.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── convert ├── convert.go ├── convert_test.go └── stdlib.go ├── go.mod ├── go.sum └── main.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/README.md -------------------------------------------------------------------------------- /convert/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/convert/convert.go -------------------------------------------------------------------------------- /convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/convert/convert_test.go -------------------------------------------------------------------------------- /convert/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/convert/stdlib.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmccombs/hcl2json/HEAD/main.go --------------------------------------------------------------------------------