2021-08-24 21:46:00 +03:00
|
|
|
module github.com/Azure/azure-workload-identity
|
2021-05-01 00:51:28 +03:00
|
|
|
|
2024-10-10 13:52:17 +03:00
|
|
|
go 1.23.1
|
2021-05-01 00:51:28 +03:00
|
|
|
|
2021-05-04 22:30:57 +03:00
|
|
|
require (
|
2023-07-19 06:30:10 +03:00
|
|
|
github.com/Azure/aad-pod-identity v1.8.17
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
|
2023-05-04 22:07:35 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization v1.0.0
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armsubscriptions v1.1.1
|
2023-05-02 03:31:41 +03:00
|
|
|
github.com/Azure/go-autorest/autorest v0.11.29
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2
|
2021-12-14 00:52:45 +03:00
|
|
|
github.com/golang/mock v1.6.0
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/google/uuid v1.6.0
|
2023-12-01 01:13:33 +03:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2021-05-12 19:11:11 +03:00
|
|
|
github.com/kelseyhightower/envconfig v1.4.0
|
2024-08-01 21:14:39 +03:00
|
|
|
github.com/microsoft/kiota-authentication-azure-go v1.0.2
|
2024-10-10 21:34:47 +03:00
|
|
|
github.com/microsoft/kiota-http-go v1.4.5
|
2024-08-01 21:14:39 +03:00
|
|
|
github.com/microsoftgraph/msgraph-sdk-go v1.45.0
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/open-policy-agent/cert-controller v0.11.0
|
2021-05-12 02:14:46 +03:00
|
|
|
github.com/pkg/errors v0.9.1
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/prometheus/client_golang v1.19.1
|
|
|
|
github.com/spf13/cobra v1.8.1
|
2021-10-08 20:24:04 +03:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2024-10-10 20:32:24 +03:00
|
|
|
go.opentelemetry.io/otel v1.28.0
|
2024-05-02 23:44:37 +03:00
|
|
|
go.opentelemetry.io/otel/exporters/prometheus v0.46.0
|
2024-10-10 20:32:24 +03:00
|
|
|
go.opentelemetry.io/otel/metric v1.28.0
|
2022-06-07 19:16:31 +03:00
|
|
|
gopkg.in/ini.v1 v1.62.1
|
2021-12-14 00:52:45 +03:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0
|
2024-10-10 20:32:24 +03:00
|
|
|
k8s.io/api v0.31.1
|
|
|
|
k8s.io/apimachinery v0.31.1
|
|
|
|
k8s.io/client-go v0.31.1
|
|
|
|
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
|
2023-02-04 11:46:59 +03:00
|
|
|
monis.app/mlog v0.0.4
|
2024-10-10 20:32:24 +03:00
|
|
|
sigs.k8s.io/controller-runtime v0.19.0
|
2021-05-04 22:30:57 +03:00
|
|
|
)
|
2021-05-05 03:06:06 +03:00
|
|
|
|
2023-05-04 22:07:35 +03:00
|
|
|
require (
|
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
github.com/google/gnostic-models v0.6.8 // indirect
|
2024-08-01 21:14:39 +03:00
|
|
|
github.com/microsoft/kiota-abstractions-go v1.6.0 // indirect
|
|
|
|
github.com/microsoft/kiota-serialization-json-go v1.0.7 // indirect
|
|
|
|
github.com/microsoft/kiota-serialization-multipart-go v1.0.0 // indirect
|
|
|
|
github.com/std-uritemplate/std-uritemplate/go v0.0.57 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
|
|
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
|
|
|
|
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
|
2023-05-04 22:07:35 +03:00
|
|
|
)
|
|
|
|
|
2021-09-03 20:10:38 +03:00
|
|
|
require (
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
2021-11-02 00:16:26 +03:00
|
|
|
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-04-11 23:34:01 +03:00
|
|
|
github.com/blang/semver/v4 v4.0.0 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
2023-04-11 23:34:01 +03:00
|
|
|
github.com/cjlapao/common-go v0.0.39 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
|
|
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
|
|
|
|
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
2024-08-01 21:14:39 +03:00
|
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
2023-04-11 23:34:01 +03:00
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
github.com/go-logr/zapr v1.3.0 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2023-03-21 02:56:28 +03:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
|
2021-11-02 00:16:26 +03:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
2022-06-29 19:25:50 +03:00
|
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2022-06-03 00:19:20 +03:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
2022-01-04 01:25:09 +03:00
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2022-06-29 19:25:50 +03:00
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2023-06-26 20:08:03 +03:00
|
|
|
github.com/microsoft/kiota-serialization-form-go v1.0.0 // indirect
|
|
|
|
github.com/microsoft/kiota-serialization-text-go v1.0.0 // indirect
|
2024-08-01 21:14:39 +03:00
|
|
|
github.com/microsoftgraph/msgraph-sdk-go-core v1.1.0
|
2021-09-03 20:10:38 +03:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
2022-01-04 01:25:09 +03:00
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2022-06-03 00:19:20 +03:00
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
|
|
github.com/prometheus/common v0.55.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
2023-04-11 23:34:01 +03:00
|
|
|
github.com/smartystreets/goconvey v1.7.2 // indirect
|
2024-06-14 00:53:55 +03:00
|
|
|
github.com/stretchr/testify v1.9.0 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
|
2024-08-01 21:14:39 +03:00
|
|
|
go.opentelemetry.io/otel/sdk/metric v1.27.0
|
2024-10-10 20:32:24 +03:00
|
|
|
go.opentelemetry.io/otel/trace v1.28.0 // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
|
|
go.uber.org/zap v1.26.0 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
golang.org/x/crypto v0.25.0 // indirect
|
|
|
|
golang.org/x/net v0.27.0 // indirect; GO-2024-2687
|
|
|
|
golang.org/x/oauth2 v0.21.0 // indirect
|
|
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
|
|
golang.org/x/term v0.22.0 // indirect
|
2024-06-14 00:53:55 +03:00
|
|
|
golang.org/x/text v0.16.0 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
golang.org/x/time v0.5.0 // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2022-09-09 19:44:26 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2024-10-10 20:32:24 +03:00
|
|
|
k8s.io/apiextensions-apiserver v0.31.0 // indirect
|
|
|
|
k8s.io/component-base v0.31.0 // indirect
|
|
|
|
k8s.io/klog/v2 v2.130.1 // indirect
|
|
|
|
k8s.io/kube-openapi v0.0.0-20240430033511-f0e62f92d13f // indirect
|
2024-05-02 23:44:37 +03:00
|
|
|
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
|
|
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
|
|
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
2021-09-03 20:10:38 +03:00
|
|
|
)
|