Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit aaa4629

Browse files
authored
Merge pull request #39 from brainly/feat/superuser-password-validation
Require password for superuser at plan phase
2 parents 53c926c + 5a92d36 commit aaa4629

File tree

5 files changed

+169
-37
lines changed

5 files changed

+169
-37
lines changed

go.mod

Lines changed: 86 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,98 @@
11
module github.com/brainly/terraform-provider-redshift
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.7.0
77
github.com/aws/aws-sdk-go-v2/config v1.4.1
88
github.com/aws/aws-sdk-go-v2/service/redshift v1.8.0
99
github.com/aws/aws-sdk-go-v2/service/sts v1.5.0
1010
github.com/hashicorp/terraform-plugin-docs v0.4.0
11-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.6.1
11+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.10.1
1212
github.com/lib/pq v1.10.2
1313
golang.org/x/net v0.0.0-20210326060303-6b1517762897
1414
)
15+
16+
require (
17+
cloud.google.com/go v0.61.0 // indirect
18+
cloud.google.com/go/storage v1.10.0 // indirect
19+
github.com/Masterminds/goutils v1.1.0 // indirect
20+
github.com/Masterminds/semver v1.5.0 // indirect
21+
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
22+
github.com/agext/levenshtein v1.2.2 // indirect
23+
github.com/apparentlymart/go-cidr v1.0.1 // indirect
24+
github.com/apparentlymart/go-textseg v1.0.0 // indirect
25+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
26+
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310 // indirect
27+
github.com/aws/aws-sdk-go v1.25.3 // indirect
28+
github.com/aws/aws-sdk-go-v2/credentials v1.3.0 // indirect
29+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.2.0 // indirect
30+
github.com/aws/aws-sdk-go-v2/internal/ini v1.1.0 // indirect
31+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.2.0 // indirect
32+
github.com/aws/aws-sdk-go-v2/service/sso v1.3.0 // indirect
33+
github.com/aws/smithy-go v1.5.0 // indirect
34+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
35+
github.com/bgentry/speakeasy v0.1.0 // indirect
36+
github.com/davecgh/go-spew v1.1.1 // indirect
37+
github.com/fatih/color v1.7.0 // indirect
38+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
39+
github.com/golang/protobuf v1.4.2 // indirect
40+
github.com/google/go-cmp v0.5.6 // indirect
41+
github.com/google/uuid v1.1.2 // indirect
42+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
43+
github.com/hashicorp/errwrap v1.0.0 // indirect
44+
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
45+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
46+
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
47+
github.com/hashicorp/go-getter v1.5.3 // indirect
48+
github.com/hashicorp/go-hclog v0.16.1 // indirect
49+
github.com/hashicorp/go-multierror v1.1.1 // indirect
50+
github.com/hashicorp/go-plugin v1.4.1 // indirect
51+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
52+
github.com/hashicorp/go-uuid v1.0.2 // indirect
53+
github.com/hashicorp/go-version v1.3.0 // indirect
54+
github.com/hashicorp/hc-install v0.3.1 // indirect
55+
github.com/hashicorp/hcl/v2 v2.3.0 // indirect
56+
github.com/hashicorp/logutils v1.0.0 // indirect
57+
github.com/hashicorp/terraform-exec v0.15.0 // indirect
58+
github.com/hashicorp/terraform-json v0.13.0 // indirect
59+
github.com/hashicorp/terraform-plugin-go v0.5.0 // indirect
60+
github.com/hashicorp/terraform-plugin-log v0.2.0 // indirect
61+
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896 // indirect
62+
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
63+
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
64+
github.com/huandu/xstrings v1.3.2 // indirect
65+
github.com/imdario/mergo v0.3.12 // indirect
66+
github.com/jmespath/go-jmespath v0.4.0 // indirect
67+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
68+
github.com/klauspost/compress v1.11.2 // indirect
69+
github.com/mattn/go-colorable v0.1.8 // indirect
70+
github.com/mattn/go-isatty v0.0.12 // indirect
71+
github.com/mitchellh/cli v1.1.2 // indirect
72+
github.com/mitchellh/copystructure v1.2.0 // indirect
73+
github.com/mitchellh/go-homedir v1.1.0 // indirect
74+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
75+
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
76+
github.com/mitchellh/mapstructure v1.1.2 // indirect
77+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
78+
github.com/oklog/run v1.0.0 // indirect
79+
github.com/posener/complete v1.1.1 // indirect
80+
github.com/russross/blackfriday v1.6.0 // indirect
81+
github.com/ulikunitz/xz v0.5.8 // indirect
82+
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
83+
github.com/zclconf/go-cty v1.9.1 // indirect
84+
go.opencensus.io v0.22.4 // indirect
85+
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
86+
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
87+
golang.org/x/mod v0.3.0 // indirect
88+
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
89+
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
90+
golang.org/x/text v0.3.5 // indirect
91+
golang.org/x/tools v0.0.0-20200713011307-fd294ab11aed // indirect
92+
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
93+
google.golang.org/api v0.29.0 // indirect
94+
google.golang.org/appengine v1.6.6 // indirect
95+
google.golang.org/genproto v0.0.0-20200711021454-869866162049 // indirect
96+
google.golang.org/grpc v1.32.0 // indirect
97+
google.golang.org/protobuf v1.25.0 // indirect
98+
)

0 commit comments

Comments
 (0)