Skip to content
This repository was archived by the owner on Feb 20, 2024. It is now read-only.

Commit a2937ca

Browse files
authored
Merge pull request #5 from lbrlabs/upd
update to v0.1.4 of vantage provider
2 parents 209cac5 + d8dc2c3 commit a2937ca

File tree

81 files changed

+8647
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+8647
-158
lines changed

.upgrade-config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
upstream-provider-name: terraform-provider-vantage

go.work.sum

Lines changed: 372 additions & 2 deletions
Large diffs are not rendered by default.

provider/cmd/pulumi-resource-vantage/bridge-metadata.json

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,42 @@
55
"renamedProperties": {},
66
"renames": {
77
"resources": {
8-
"vantage:index/awsProvider:AwsProvider": "vantage_aws_provider"
8+
"vantage:index/awsProvider:AwsProvider": "vantage_aws_provider",
9+
"vantage:index/costReport:CostReport": "vantage_cost_report",
10+
"vantage:index/dashboard:Dashboard": "vantage_dashboard",
11+
"vantage:index/folder:Folder": "vantage_folder",
12+
"vantage:index/savedFilter:SavedFilter": "vantage_saved_filter"
913
},
1014
"functions": {
11-
"vantage:index/getAwsProviderInfo:getAwsProviderInfo": "vantage_aws_provider_info"
15+
"vantage:index/getAwsProviderInfo:getAwsProviderInfo": "vantage_aws_provider_info",
16+
"vantage:index/savedFilters:SavedFilters": "vantage_saved_filters"
1217
},
1318
"renamedProperties": {
19+
"vantage:index/SavedFiltersFilter:SavedFiltersFilter": {
20+
"costReportTokens": "cost_report_tokens",
21+
"workspaceToken": "workspace_token"
22+
},
1423
"vantage:index/awsProvider:AwsProvider": {
1524
"bucketArn": "bucket_arn",
1625
"crossAccountArn": "cross_account_arn"
1726
},
27+
"vantage:index/costReport:CostReport": {
28+
"folderToken": "folder_token",
29+
"savedFilterTokens": "saved_filter_tokens",
30+
"workspaceToken": "workspace_token"
31+
},
32+
"vantage:index/dashboard:Dashboard": {
33+
"dateBin": "date_bin",
34+
"dateInterval": "date_interval",
35+
"endDate": "end_date",
36+
"startDate": "start_date",
37+
"widgetTokens": "widget_tokens",
38+
"workspaceToken": "workspace_token"
39+
},
40+
"vantage:index/folder:Folder": {
41+
"parentFolderToken": "parent_folder_token",
42+
"workspaceToken": "workspace_token"
43+
},
1844
"vantage:index/getAwsProviderInfo:getAwsProviderInfo": {
1945
"additionalResourcesPolicy": "additional_resources_policy",
2046
"autopilotPolicy": "autopilot_policy",
@@ -23,6 +49,9 @@
2349
"iamRoleArn": "iam_role_arn",
2450
"rootPolicy": "root_policy"
2551
},
52+
"vantage:index/savedFilter:SavedFilter": {
53+
"workspaceToken": "workspace_token"
54+
},
2655
"vantage:index:Provider": {
2756
"apiToken": "api_token"
2857
}

provider/cmd/pulumi-resource-vantage/schema.json

Lines changed: 415 additions & 0 deletions
Large diffs are not rendered by default.

provider/go.mod

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ require (
1010
)
1111

1212
require (
13-
cloud.google.com/go v0.107.0 // indirect
14-
cloud.google.com/go/compute v1.15.1 // indirect
13+
cloud.google.com/go v0.110.0 // indirect
14+
cloud.google.com/go/compute v1.19.1 // indirect
1515
cloud.google.com/go/compute/metadata v0.2.3 // indirect
16-
cloud.google.com/go/iam v0.8.0 // indirect
17-
cloud.google.com/go/kms v1.6.0 // indirect
18-
cloud.google.com/go/logging v1.6.1 // indirect
19-
cloud.google.com/go/longrunning v0.3.0 // indirect
20-
cloud.google.com/go/storage v1.27.0 // indirect
16+
cloud.google.com/go/iam v0.13.0 // indirect
17+
cloud.google.com/go/kms v1.10.1 // indirect
18+
cloud.google.com/go/logging v1.7.0 // indirect
19+
cloud.google.com/go/longrunning v0.4.1 // indirect
20+
cloud.google.com/go/storage v1.28.1 // indirect
2121
github.com/AlecAivazis/survey/v2 v2.0.5 // indirect
2222
github.com/Azure/azure-sdk-for-go v66.0.0+incompatible // indirect
2323
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.1 // indirect
@@ -81,7 +81,7 @@ require (
8181
github.com/edsrzf/mmap-go v1.1.0 // indirect
8282
github.com/emirpasic/gods v1.18.1 // indirect
8383
github.com/ettle/strcase v0.1.1 // indirect
84-
github.com/fatih/color v1.13.0 // indirect
84+
github.com/fatih/color v1.15.0 // indirect
8585
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 // indirect
8686
github.com/go-git/gcfg v1.5.0 // indirect
8787
github.com/go-git/go-billy/v5 v5.4.0 // indirect
@@ -90,7 +90,7 @@ require (
9090
github.com/gogo/protobuf v1.3.2 // indirect
9191
github.com/golang-jwt/jwt v3.2.1+incompatible // indirect
9292
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
93-
github.com/golang/glog v1.0.0 // indirect
93+
github.com/golang/glog v1.1.0 // indirect
9494
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
9595
github.com/golang/protobuf v1.5.3 // indirect
9696
github.com/golang/snappy v0.0.4 // indirect
@@ -99,18 +99,18 @@ require (
9999
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
100100
github.com/google/uuid v1.3.0 // indirect
101101
github.com/google/wire v0.5.0 // indirect
102-
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
103-
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
102+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
103+
github.com/googleapis/gax-go/v2 v2.7.1 // indirect
104104
github.com/gorilla/mux v1.8.0 // indirect
105105
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
106106
github.com/hashicorp/errwrap v1.1.0 // indirect
107107
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
108108
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
109109
github.com/hashicorp/go-getter v1.7.1 // indirect
110-
github.com/hashicorp/go-hclog v1.4.0 // indirect
110+
github.com/hashicorp/go-hclog v1.5.0 // indirect
111111
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
112112
github.com/hashicorp/go-multierror v1.1.1 // indirect
113-
github.com/hashicorp/go-plugin v1.4.8 // indirect
113+
github.com/hashicorp/go-plugin v1.4.10 // indirect
114114
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
115115
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
116116
github.com/hashicorp/go-safetemp v1.0.0 // indirect
@@ -124,11 +124,11 @@ require (
124124
github.com/hashicorp/hcl v1.0.0 // indirect
125125
github.com/hashicorp/hcl/v2 v2.16.2 // indirect
126126
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
127-
github.com/hashicorp/terraform-plugin-framework v1.1.1 // indirect
128-
github.com/hashicorp/terraform-plugin-go v0.14.3 // indirect
129-
github.com/hashicorp/terraform-plugin-log v0.8.0 // indirect
130-
github.com/hashicorp/terraform-registry-address v0.1.0 // indirect
131-
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
127+
github.com/hashicorp/terraform-plugin-framework v1.3.5 // indirect
128+
github.com/hashicorp/terraform-plugin-go v0.18.0 // indirect
129+
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
130+
github.com/hashicorp/terraform-registry-address v0.2.1 // indirect
131+
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
132132
github.com/hashicorp/vault/api v1.8.2 // indirect
133133
github.com/hashicorp/vault/sdk v0.6.1 // indirect
134134
github.com/hashicorp/yamux v0.1.1 // indirect
@@ -145,7 +145,7 @@ require (
145145
github.com/klauspost/compress v1.15.11 // indirect
146146
github.com/kylelemons/godebug v1.1.0 // indirect
147147
github.com/mattn/go-colorable v0.1.13 // indirect
148-
github.com/mattn/go-isatty v0.0.16 // indirect
148+
github.com/mattn/go-isatty v0.0.19 // indirect
149149
github.com/mattn/go-runewidth v0.0.13 // indirect
150150
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
151151
github.com/mitchellh/cli v1.1.5 // indirect
@@ -178,7 +178,7 @@ require (
178178
github.com/pulumi/pulumi/pkg/v3 v3.69.0 // indirect
179179
github.com/pulumi/schema-tools v0.1.2 // indirect
180180
github.com/rivo/uniseg v0.4.4 // indirect
181-
github.com/rogpeppe/go-internal v1.9.0 // indirect
181+
github.com/rogpeppe/go-internal v1.11.0 // indirect
182182
github.com/russross/blackfriday/v2 v2.1.0 // indirect
183183
github.com/ryanuber/go-glob v1.0.0 // indirect
184184
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
@@ -198,9 +198,9 @@ require (
198198
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
199199
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
200200
github.com/ulikunitz/xz v0.5.10 // indirect
201-
github.com/vantage-sh/terraform-provider-vantage v0.0.0-00010101000000-000000000000 // indirect
202-
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
203-
github.com/vmihailenco/tagparser v0.1.2 // indirect
201+
github.com/vantage-sh/terraform-provider-vantage v0.1.4 // indirect
202+
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
203+
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
204204
github.com/xanzy/ssh-agent v0.3.3 // indirect
205205
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
206206
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
@@ -210,21 +210,21 @@ require (
210210
go.uber.org/atomic v1.9.0 // indirect
211211
gocloud.dev v0.27.0 // indirect
212212
gocloud.dev/secrets/hashivault v0.27.0 // indirect
213-
golang.org/x/crypto v0.7.0 // indirect
213+
golang.org/x/crypto v0.10.0 // indirect
214214
golang.org/x/mod v0.10.0 // indirect
215-
golang.org/x/net v0.8.0 // indirect
216-
golang.org/x/oauth2 v0.4.0 // indirect
215+
golang.org/x/net v0.11.0 // indirect
216+
golang.org/x/oauth2 v0.7.0 // indirect
217217
golang.org/x/sync v0.1.0 // indirect
218-
golang.org/x/sys v0.6.0 // indirect
219-
golang.org/x/term v0.6.0 // indirect
220-
golang.org/x/text v0.8.0 // indirect
218+
golang.org/x/sys v0.11.0 // indirect
219+
golang.org/x/term v0.9.0 // indirect
220+
golang.org/x/text v0.10.0 // indirect
221221
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
222222
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
223-
google.golang.org/api v0.103.0 // indirect
223+
google.golang.org/api v0.114.0 // indirect
224224
google.golang.org/appengine v1.6.7 // indirect
225-
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
226-
google.golang.org/grpc v1.54.0 // indirect
227-
google.golang.org/protobuf v1.29.1 // indirect
225+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
226+
google.golang.org/grpc v1.56.1 // indirect
227+
google.golang.org/protobuf v1.31.0 // indirect
228228
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
229229
gopkg.in/warnings.v0 v0.1.2 // indirect
230230
gopkg.in/yaml.v3 v3.0.1 // indirect
@@ -234,6 +234,5 @@ require (
234234

235235
replace (
236236
github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20230327102345-3fa930f86570
237-
github.com/vantage-sh/terraform-provider-vantage => github.com/jaxxstorm/terraform-provider-vantage v0.0.0-20230606202658-9b6ed46c7786
238237
github.com/vantage-sh/terraform-provider-vantage/shim => ./shim
239238
)

0 commit comments

Comments
 (0)