Skip to content

Commit 460eea9

Browse files
Merge pull request #1114 from flavianmissi/OCPBUGS-39100-azidext
[release-4.14] OCPBUGS-39100: Avoid Shared Access Key usage for Azure Storage Account when using Managed Identity based auth
2 parents 5e20c16 + 8632017 commit 460eea9

File tree

562 files changed

+167607
-2142
lines changed

Some content is hidden

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

562 files changed

+167607
-2142
lines changed

go.mod

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ require (
77
cloud.google.com/go/storage v1.29.0
88
github.com/Azure/azure-pipeline-go v0.2.3
99
github.com/Azure/azure-sdk-for-go v55.6.0+incompatible
10-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0
11-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0
10+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0
11+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
12+
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork v1.1.0
13+
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/privatedns/armprivatedns v1.2.0
14+
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.6.0
15+
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.4.0
1216
github.com/Azure/azure-storage-blob-go v0.7.0
13-
github.com/Azure/go-autorest/autorest v0.11.27
17+
github.com/Azure/go-autorest/autorest v0.11.29
1418
github.com/Azure/go-autorest/autorest/mocks v0.4.2
1519
github.com/Azure/go-autorest/autorest/to v0.4.0
1620
github.com/IBM/go-sdk-core/v5 v5.5.0
@@ -23,12 +27,12 @@ require (
2327
github.com/ghodss/yaml v1.0.0
2428
github.com/golang-jwt/jwt v3.2.2+incompatible
2529
github.com/google/go-cmp v0.5.9
26-
github.com/google/uuid v1.3.0
30+
github.com/google/uuid v1.6.0
2731
github.com/googleapis/gax-go/v2 v2.11.0
2832
github.com/gophercloud/gophercloud v1.1.0
2933
github.com/gophercloud/utils v0.0.0-20221124081324-7bac6f5cdf99
3034
github.com/goware/urlx v0.3.2
31-
github.com/jongio/azidext/go/azidext v0.4.0
35+
github.com/jongio/azidext/go/azidext v0.5.0
3236
github.com/openshift/api v0.0.0-20230807132801-600991d550ac
3337
github.com/openshift/build-machinery-go v0.0.0-20220913142420-e25cf57ea46d
3438
github.com/openshift/client-go v0.0.0-20230503144108-75015d2347cb
@@ -37,8 +41,8 @@ require (
3741
github.com/prometheus/client_model v0.4.0
3842
github.com/prometheus/common v0.44.0
3943
github.com/spf13/cobra v1.6.1
40-
github.com/stretchr/testify v1.8.4
41-
golang.org/x/net v0.17.0
44+
github.com/stretchr/testify v1.9.0
45+
golang.org/x/net v0.27.0
4246
golang.org/x/oauth2 v0.8.0
4347
golang.org/x/time v0.3.0
4448
google.golang.org/api v0.126.0
@@ -56,14 +60,14 @@ require (
5660
cloud.google.com/go/compute/metadata v0.2.3 // indirect
5761
cloud.google.com/go/iam v1.1.0 // indirect
5862
cloud.google.com/go/longrunning v0.5.0 // indirect
59-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect
63+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
6064
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
61-
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
65+
github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect
6266
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
6367
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
6468
github.com/Azure/go-autorest/logger v0.2.1 // indirect
6569
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
66-
github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0 // indirect
70+
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
6771
github.com/NYTimes/gziphandler v1.1.1 // indirect
6872
github.com/PuerkitoBio/purell v1.1.1 // indirect
6973
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
@@ -92,6 +96,7 @@ require (
9296
github.com/go-stack/stack v1.8.0 // indirect
9397
github.com/gogo/protobuf v1.3.2 // indirect
9498
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
99+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
95100
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
96101
github.com/golang/protobuf v1.5.3 // indirect
97102
github.com/google/cel-go v0.12.6 // indirect
@@ -120,7 +125,7 @@ require (
120125
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
121126
github.com/oklog/ulid v1.3.1 // indirect
122127
github.com/onsi/ginkgo v1.16.4 // indirect
123-
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
128+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
124129
github.com/pkg/errors v0.9.1 // indirect
125130
github.com/pkg/profile v1.3.0 // indirect
126131
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -147,11 +152,11 @@ require (
147152
go.uber.org/atomic v1.7.0 // indirect
148153
go.uber.org/multierr v1.6.0 // indirect
149154
go.uber.org/zap v1.19.0 // indirect
150-
golang.org/x/crypto v0.14.0 // indirect
151-
golang.org/x/sync v0.2.0 // indirect
152-
golang.org/x/sys v0.20.0 // indirect
153-
golang.org/x/term v0.13.0 // indirect
154-
golang.org/x/text v0.13.0 // indirect
155+
golang.org/x/crypto v0.25.0 // indirect
156+
golang.org/x/sync v0.7.0 // indirect
157+
golang.org/x/sys v0.22.0 // indirect
158+
golang.org/x/term v0.22.0 // indirect
159+
golang.org/x/text v0.16.0 // indirect
155160
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
156161
google.golang.org/appengine v1.6.7 // indirect
157162
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect

0 commit comments

Comments
 (0)