1
1
module github.com/terraform-docs/terraform-docs
2
2
3
- go 1.16
3
+ go 1.21
4
+
5
+ toolchain go1.21.6
4
6
5
7
require (
6
8
github.com/BurntSushi/toml v1.3.2
@@ -12,6 +14,7 @@ require (
12
14
github.com/iancoleman/orderedmap v0.3.0
13
15
github.com/imdario/mergo v0.3.16
14
16
github.com/mitchellh/go-homedir v1.1.0
17
+ github.com/rquadling/terraform-config-inspect v0.0.0-20240117094320-33c0c7fd6955
15
18
github.com/spf13/cobra v1.8.0
16
19
github.com/spf13/pflag v1.0.5
17
20
github.com/spf13/viper v1.18.2
@@ -22,27 +25,51 @@ require (
22
25
)
23
26
24
27
require (
28
+ github.com/Masterminds/goutils v1.1.1 // indirect
25
29
github.com/Masterminds/semver/v3 v3.2.1 // indirect
26
30
github.com/agext/levenshtein v1.2.3 // indirect
31
+ github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
32
+ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
27
33
github.com/fatih/color v1.16.0 // indirect
34
+ github.com/fsnotify/fsnotify v1.7.0 // indirect
35
+ github.com/golang/protobuf v1.5.3 // indirect
36
+ github.com/google/go-cmp v0.6.0 // indirect
28
37
github.com/google/uuid v1.5.0 // indirect
29
- github.com/hashicorp/terraform-config-inspect v0.0.0-20231204233900-a34142ec2a72
38
+ github.com/hashicorp/hcl v1.0.0 // indirect
39
+ github.com/hashicorp/yamux v0.1.1 // indirect
30
40
github.com/huandu/xstrings v1.4.0 // indirect
41
+ github.com/inconshreveable/mousetrap v1.1.0 // indirect
42
+ github.com/magiconair/properties v1.8.7 // indirect
43
+ github.com/mattn/go-colorable v0.1.13 // indirect
44
+ github.com/mattn/go-isatty v0.0.20 // indirect
31
45
github.com/mitchellh/copystructure v1.2.0 // indirect
32
46
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
33
47
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
48
+ github.com/mitchellh/mapstructure v1.5.0 // indirect
49
+ github.com/mitchellh/reflectwalk v1.0.2 // indirect
34
50
github.com/oklog/run v1.1.0 // indirect
35
51
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
52
+ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
53
+ github.com/sagikazarmark/locafero v0.4.0 // indirect
54
+ github.com/sagikazarmark/slog-shim v0.1.0 // indirect
36
55
github.com/shopspring/decimal v1.3.1 // indirect
56
+ github.com/sourcegraph/conc v0.3.0 // indirect
57
+ github.com/spf13/afero v1.11.0 // indirect
58
+ github.com/spf13/cast v1.6.0 // indirect
59
+ github.com/subosito/gotenv v1.6.0 // indirect
37
60
github.com/zclconf/go-cty v1.14.1 // indirect
38
61
go.uber.org/multierr v1.11.0 // indirect
39
62
golang.org/x/crypto v0.17.0 // indirect
40
63
golang.org/x/exp v0.0.0-20231226003508-02704c960a9b // indirect
41
64
golang.org/x/exp/typeparams v0.0.0-20231226003508-02704c960a9b // indirect
65
+ golang.org/x/mod v0.14.0 // indirect
66
+ golang.org/x/net v0.19.0 // indirect
67
+ golang.org/x/sys v0.15.0 // indirect
68
+ golang.org/x/text v0.14.0 // indirect
42
69
golang.org/x/tools v0.16.1 // indirect
43
70
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect
44
71
google.golang.org/grpc v1.60.1 // indirect
45
72
google.golang.org/protobuf v1.32.0 // indirect
73
+ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
74
+ gopkg.in/ini.v1 v1.67.0 // indirect
46
75
)
47
-
48
- replace github.com/hashicorp/terraform-config-inspect => github.com/rquadling/terraform-config-inspect v0.0.0-20231228173330-dceb5f6e1579
0 commit comments