forked from salesforce/terraform-provider-anypoint
-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
82 lines (79 loc) · 4.42 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
module github.com/mulesoft-anypoint/terraform-provider-anypoint
go 1.20
require (
github.com/hashicorp/terraform-plugin-sdk/v2 v2.24.0
github.com/iancoleman/strcase v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/ame v1.0.0
github.com/mulesoft-anypoint/anypoint-client-go/ame_binding v1.0.0
github.com/mulesoft-anypoint/anypoint-client-go/amq v1.0.0
github.com/mulesoft-anypoint/anypoint-client-go/apim v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/apim_policy v0.0.1
github.com/mulesoft-anypoint/anypoint-client-go/apim_upstream v0.0.1
github.com/mulesoft-anypoint/anypoint-client-go/application_manager_v2 v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/authorization v0.3.0
github.com/mulesoft-anypoint/anypoint-client-go/connected_app v1.1.1
github.com/mulesoft-anypoint/anypoint-client-go/dlb v0.5.0
github.com/mulesoft-anypoint/anypoint-client-go/env v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/flexgateway v0.1.1
github.com/mulesoft-anypoint/anypoint-client-go/idp v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/org v0.4.0
github.com/mulesoft-anypoint/anypoint-client-go/role v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/rolegroup v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/rtf v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/secretgroup v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/secretgroup_certificate v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/secretgroup_crl_distributor_configs v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/secretgroup_keystore v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/secretgroup_tlscontext v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/secretgroup_truststore v0.1.0
github.com/mulesoft-anypoint/anypoint-client-go/team v0.3.0
github.com/mulesoft-anypoint/anypoint-client-go/team_group_mappings v0.2.1
github.com/mulesoft-anypoint/anypoint-client-go/team_members v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/team_roles v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/user v0.3.0
github.com/mulesoft-anypoint/anypoint-client-go/user_rolegroups v0.2.0
github.com/mulesoft-anypoint/anypoint-client-go/vpc v0.6.0
github.com/mulesoft-anypoint/anypoint-client-go/vpn v0.1.0
)
require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/go-hclog v1.2.1 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.4.4 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hcl/v2 v2.14.1 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.14.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.7.0 // indirect
github.com/hashicorp/terraform-registry-address v0.0.0-20220623143253-7d51757b572c // indirect
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/stretchr/testify v1.8.1 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
github.com/vmihailenco/tagparser v0.1.1 // indirect
github.com/zclconf/go-cty v1.11.0 // indirect
golang.org/x/net v0.0.0-20220607020251-c690dde0001d // indirect
golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20211203200212-54befc351ae9 // indirect
google.golang.org/grpc v1.48.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)