Skip to content

Commit dc884fd

Browse files
committed
Update dependancies
1 parent 454eaad commit dc884fd

File tree

4 files changed

+615
-314
lines changed

4 files changed

+615
-314
lines changed

go.mod

Lines changed: 107 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,112 @@
1-
module github.com/lokkersp/terraform-provider-sops
1+
module github.com/mattclegg/terraform-provider-sops
22

3-
go 1.16
3+
go 1.19
44

55
require (
6-
github.com/Azure/azure-sdk-for-go v36.1.0+incompatible // indirect
7-
github.com/Azure/go-autorest/autorest/adal v0.8.1-0.20191028180845-3492b2aff503 // indirect
8-
github.com/Azure/go-autorest/autorest/azure/auth v0.4.0 // indirect
9-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.7.0
10-
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect
11-
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c // indirect
12-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
6+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1
137
github.com/mitchellh/go-wordwrap v1.0.1
14-
github.com/mitchellh/gox v1.0.1 // indirect
15-
go.mozilla.org/sops v0.0.0-20190912205235-14a22d7a7060 // indirect
16-
go.mozilla.org/sops/v3 v3.7.0
17-
gopkg.in/ini.v1 v1.62.0
18-
gopkg.in/yaml.v2 v2.3.0
8+
go.mozilla.org/sops/v3 v3.7.3
9+
gopkg.in/ini.v1 v1.67.0
10+
gopkg.in/yaml.v2 v2.4.0
11+
)
12+
13+
require (
14+
cloud.google.com/go/compute v1.5.0 // indirect
15+
filippo.io/age v1.0.0 // indirect
16+
github.com/Azure/azure-sdk-for-go v63.3.0+incompatible // indirect
17+
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
18+
github.com/Azure/go-autorest/autorest v0.11.26 // indirect
19+
github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect
20+
github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect
21+
github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect
22+
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
23+
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
24+
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
25+
github.com/Azure/go-autorest/logger v0.2.1 // indirect
26+
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
27+
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect
28+
github.com/agext/levenshtein v1.2.2 // indirect
29+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
30+
github.com/armon/go-metrics v0.3.10 // indirect
31+
github.com/armon/go-radix v1.0.0 // indirect
32+
github.com/aws/aws-sdk-go v1.43.43 // indirect
33+
github.com/blang/semver v3.5.1+incompatible // indirect
34+
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
35+
github.com/dimchansky/utfbom v1.1.1 // indirect
36+
github.com/fatih/color v1.13.0 // indirect
37+
github.com/golang-jwt/jwt/v4 v4.3.0 // indirect
38+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
39+
github.com/golang/protobuf v1.5.2 // indirect
40+
github.com/golang/snappy v0.0.4 // indirect
41+
github.com/google/go-cmp v0.5.9 // indirect
42+
github.com/googleapis/gax-go/v2 v2.2.0 // indirect
43+
github.com/goware/prefixer v0.0.0-20160118172347-395022866408 // indirect
44+
github.com/hashicorp/errwrap v1.1.0 // indirect
45+
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
46+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
47+
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
48+
github.com/hashicorp/go-hclog v1.4.0 // indirect
49+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
50+
github.com/hashicorp/go-multierror v1.1.1 // indirect
51+
github.com/hashicorp/go-plugin v1.4.8 // indirect
52+
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
53+
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
54+
github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 // indirect
55+
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.3 // indirect
56+
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
57+
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
58+
github.com/hashicorp/go-uuid v1.0.3 // indirect
59+
github.com/hashicorp/go-version v1.6.0 // indirect
60+
github.com/hashicorp/golang-lru v0.5.4 // indirect
61+
github.com/hashicorp/hc-install v0.5.0 // indirect
62+
github.com/hashicorp/hcl v1.0.0 // indirect
63+
github.com/hashicorp/hcl/v2 v2.16.2 // indirect
64+
github.com/hashicorp/logutils v1.0.0 // indirect
65+
github.com/hashicorp/terraform-exec v0.18.1 // indirect
66+
github.com/hashicorp/terraform-json v0.16.0 // indirect
67+
github.com/hashicorp/terraform-plugin-go v0.14.3 // indirect
68+
github.com/hashicorp/terraform-plugin-log v0.8.0 // indirect
69+
github.com/hashicorp/terraform-registry-address v0.1.0 // indirect
70+
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
71+
github.com/hashicorp/vault/api v1.5.0 // indirect
72+
github.com/hashicorp/vault/sdk v0.4.1 // indirect
73+
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
74+
github.com/howeyc/gopass v0.0.0-20210920133722-c8aef6fb66ef // indirect
75+
github.com/jmespath/go-jmespath v0.4.0 // indirect
76+
github.com/lib/pq v1.10.5 // indirect
77+
github.com/mattn/go-colorable v0.1.12 // indirect
78+
github.com/mattn/go-isatty v0.0.14 // indirect
79+
github.com/mitchellh/copystructure v1.2.0 // indirect
80+
github.com/mitchellh/go-homedir v1.1.0 // indirect
81+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
82+
github.com/mitchellh/mapstructure v1.5.0 // indirect
83+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
84+
github.com/oklog/run v1.1.0 // indirect
85+
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
86+
github.com/pkg/errors v0.9.1 // indirect
87+
github.com/ryanuber/go-glob v1.0.0 // indirect
88+
github.com/sirupsen/logrus v1.8.1 // indirect
89+
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
90+
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
91+
github.com/vmihailenco/tagparser v0.1.1 // indirect
92+
github.com/zclconf/go-cty v1.13.1 // indirect
93+
go.mozilla.org/gopgagent v0.0.0-20170926210634-4d7ea76ff71a // indirect
94+
go.opencensus.io v0.23.0 // indirect
95+
go.uber.org/atomic v1.9.0 // indirect
96+
golang.org/x/crypto v0.7.0 // indirect
97+
golang.org/x/mod v0.8.0 // indirect
98+
golang.org/x/net v0.8.0 // indirect
99+
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
100+
golang.org/x/sys v0.6.0 // indirect
101+
golang.org/x/term v0.6.0 // indirect
102+
golang.org/x/text v0.8.0 // indirect
103+
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
104+
google.golang.org/api v0.74.0 // indirect
105+
google.golang.org/appengine v1.6.7 // indirect
106+
google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf // indirect
107+
google.golang.org/grpc v1.51.0 // indirect
108+
google.golang.org/protobuf v1.28.1 // indirect
109+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
110+
gopkg.in/urfave/cli.v1 v1.20.0 // indirect
111+
gopkg.in/yaml.v3 v3.0.1 // indirect
19112
)

0 commit comments

Comments
 (0)