|
| 1 | +module github.com/terraform-linters/tflint-ruleset-template |
| 2 | + |
| 3 | +go 1.19 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/hashicorp/hcl/v2 v2.14.1 |
| 7 | + github.com/terraform-linters/tflint-plugin-sdk v0.14.0 |
| 8 | +) |
| 9 | + |
| 10 | +require ( |
| 11 | + github.com/agext/levenshtein v1.2.1 // indirect |
| 12 | + github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect |
| 13 | + github.com/fatih/color v1.13.0 // indirect |
| 14 | + github.com/golang/protobuf v1.5.2 // indirect |
| 15 | + github.com/google/go-cmp v0.5.9 // indirect |
| 16 | + github.com/hashicorp/go-hclog v1.3.1 // indirect |
| 17 | + github.com/hashicorp/go-plugin v1.4.5 // indirect |
| 18 | + github.com/hashicorp/go-version v1.6.0 // indirect |
| 19 | + github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect |
| 20 | + github.com/mattn/go-colorable v0.1.12 // indirect |
| 21 | + github.com/mattn/go-isatty v0.0.14 // indirect |
| 22 | + github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect |
| 23 | + github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect |
| 24 | + github.com/oklog/run v1.0.0 // indirect |
| 25 | + github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect |
| 26 | + github.com/vmihailenco/tagparser v0.1.1 // indirect |
| 27 | + github.com/zclconf/go-cty v1.11.0 // indirect |
| 28 | + golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect |
| 29 | + golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect |
| 30 | + golang.org/x/text v0.3.7 // indirect |
| 31 | + google.golang.org/appengine v1.6.5 // indirect |
| 32 | + google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect |
| 33 | + google.golang.org/grpc v1.50.1 // indirect |
| 34 | + google.golang.org/protobuf v1.28.1 // indirect |
| 35 | +) |
0 commit comments