Skip to content

Commit 3400031

Browse files
authored
Support for references to vars and locals (hashicorp#553)
1 parent 72aef8b commit 3400031

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ require (
1212
github.com/hashicorp/go-memdb v1.3.2
1313
github.com/hashicorp/go-multierror v1.1.1
1414
github.com/hashicorp/go-version v1.3.0
15-
github.com/hashicorp/hcl-lang v0.0.0-20210609161122-bc4299c29bd1
15+
github.com/hashicorp/hcl-lang v0.0.0-20210615134118-a5118c309360
1616
github.com/hashicorp/hcl/v2 v2.10.0
1717
github.com/hashicorp/terraform-exec v0.13.3
1818
github.com/hashicorp/terraform-json v0.11.0
1919
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896
20-
github.com/hashicorp/terraform-schema v0.0.0-20210610085118-e42d6aa8c63d
20+
github.com/hashicorp/terraform-schema v0.0.0-20210615134722-b66475e71618
2121
github.com/kylelemons/godebug v1.1.0 // indirect
2222
github.com/mh-cbon/go-fmt-fail v0.0.0-20160815164508-67765b3fbcb5
2323
github.com/mitchellh/cli v1.1.2

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+l
188188
github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=
189189
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
190190
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
191-
github.com/hashicorp/hcl-lang v0.0.0-20210609161122-bc4299c29bd1 h1:GC7rz0G81RRnb8RHB6TH4s0UrOs8oEgZ6UqoaQ0lzSU=
192-
github.com/hashicorp/hcl-lang v0.0.0-20210609161122-bc4299c29bd1/go.mod h1:uMsq6wV8ZXEH8qndov4tncXlHDYnZ8aHsGmS4T74e2o=
191+
github.com/hashicorp/hcl-lang v0.0.0-20210615134118-a5118c309360 h1:E4CPsv7+U6tQOgSrma1PPTuMmeXfOxDNkY3e9bAI4z4=
192+
github.com/hashicorp/hcl-lang v0.0.0-20210615134118-a5118c309360/go.mod h1:uMsq6wV8ZXEH8qndov4tncXlHDYnZ8aHsGmS4T74e2o=
193193
github.com/hashicorp/hcl/v2 v2.10.0 h1:1S1UnuhDGlv3gRFV4+0EdwB+znNP5HmcGbIqwnSCByg=
194194
github.com/hashicorp/hcl/v2 v2.10.0/go.mod h1:FwWsfWEjyV/CMj8s/gqAuiviY72rJ1/oayI9WftqcKg=
195195
github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=
@@ -203,8 +203,8 @@ github.com/hashicorp/terraform-json v0.11.0 h1:4zDqqW2F3kOysORIaYKFGgWDYIRA3hwqx
203203
github.com/hashicorp/terraform-json v0.11.0/go.mod h1:pmbq9o4EuL43db5+0ogX10Yofv1nozM+wskr/bGFJpI=
204204
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896 h1:1FGtlkJw87UsTMg5s8jrekrHmUPUJaMcu6ELiVhQrNw=
205205
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896/go.mod h1:bzBPnUIkI0RxauU8Dqo+2KrZZ28Cf48s8V6IHt3p4co=
206-
github.com/hashicorp/terraform-schema v0.0.0-20210610085118-e42d6aa8c63d h1:1vQ8qwBeZDOqt+UmuZ8D+hRnS3ilLHziV8XXBkzDAW8=
207-
github.com/hashicorp/terraform-schema v0.0.0-20210610085118-e42d6aa8c63d/go.mod h1:6HnR9FvXrFimOgw3U/9Y1w8J02RJj6YWm7WSOFb4iEM=
206+
github.com/hashicorp/terraform-schema v0.0.0-20210615134722-b66475e71618 h1:BqSvtjfGhxnPaOiTiIokg6eJcjhT1hg/nmXU6XoKYFI=
207+
github.com/hashicorp/terraform-schema v0.0.0-20210615134722-b66475e71618/go.mod h1:ruV9Xx5LQYrZB0sNEx9dlkvS0Cp+juY/2jXQmup/67s=
208208
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 h1:HKLsbzeOsfXmKNpr3GiT18XAblV0BjCbzL8KQAMZGa0=
209209
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734/go.mod h1:kNDNcF7sN4DocDLBkQYz73HGKwN1ANB1blq4lIYLYvg=
210210
github.com/huandu/xstrings v1.3.2 h1:L18LIDzqlW6xN2rEkpdV8+oL/IXWJ1APd+vsdYy4Wdw=

0 commit comments

Comments
 (0)