mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
mod: update vault-plugin-secrets-azure@v0.9.1 (#11562)
This commit is contained in:
committed by
GitHub
parent
55ce931730
commit
c812bd6757
2
go.mod
2
go.mod
@@ -96,7 +96,7 @@ require (
|
||||
github.com/hashicorp/vault-plugin-mock v0.16.1
|
||||
github.com/hashicorp/vault-plugin-secrets-ad v0.9.0
|
||||
github.com/hashicorp/vault-plugin-secrets-alicloud v0.8.0
|
||||
github.com/hashicorp/vault-plugin-secrets-azure v0.9.0
|
||||
github.com/hashicorp/vault-plugin-secrets-azure v0.9.1
|
||||
github.com/hashicorp/vault-plugin-secrets-gcp v0.9.0
|
||||
github.com/hashicorp/vault-plugin-secrets-gcpkms v0.8.0
|
||||
github.com/hashicorp/vault-plugin-secrets-kv v0.8.0
|
||||
|
||||
2
go.sum
2
go.sum
@@ -710,6 +710,8 @@ github.com/hashicorp/vault-plugin-secrets-alicloud v0.8.0 h1:dg1vrZl+XwGipfjet7M
|
||||
github.com/hashicorp/vault-plugin-secrets-alicloud v0.8.0/go.mod h1:SSkKpSTOMnX84PfgYiWHgwVg+YMhxHNjo+YCJGNBoZk=
|
||||
github.com/hashicorp/vault-plugin-secrets-azure v0.9.0 h1:RfJsZ9DoOhJutvHx3KDSuCXZqZEWKyu3Pksa9F5fjYo=
|
||||
github.com/hashicorp/vault-plugin-secrets-azure v0.9.0/go.mod h1:4jCVjTG809NCQ8mrSnbBtX17gX1Iush+558BVO6MJeo=
|
||||
github.com/hashicorp/vault-plugin-secrets-azure v0.9.1 h1:vZhWEafEedxLS7t906QSYFKT+jiNM6Mv6fDHxOX6O5I=
|
||||
github.com/hashicorp/vault-plugin-secrets-azure v0.9.1/go.mod h1:4jCVjTG809NCQ8mrSnbBtX17gX1Iush+558BVO6MJeo=
|
||||
github.com/hashicorp/vault-plugin-secrets-gcp v0.9.0 h1:gfaTe+QNNk+wZLec0k9pUt2VSBKPB237F/Dh0a1u8ic=
|
||||
github.com/hashicorp/vault-plugin-secrets-gcp v0.9.0/go.mod h1:psRQ/dm5XatoUKLDUeWrpP9icMJNtu/jmscUr37YGK4=
|
||||
github.com/hashicorp/vault-plugin-secrets-gcpkms v0.8.0 h1:yoMAcYkdvuo0LMiPaD4OCNRO8ekkYVMhSo+GswZrgb4=
|
||||
|
||||
4
vendor/github.com/hashicorp/vault-plugin-secrets-azure/provider.go
generated
vendored
4
vendor/github.com/hashicorp/vault-plugin-secrets-azure/provider.go
generated
vendored
@@ -123,11 +123,11 @@ func newAzureProvider(settings *clientSettings) (AzureProvider, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
raClient := authorization.NewRoleAssignmentsClient(settings.SubscriptionID)
|
||||
raClient := authorization.NewRoleAssignmentsClientWithBaseURI(settings.Environment.ResourceManagerEndpoint, settings.SubscriptionID)
|
||||
raClient.Authorizer = authorizer
|
||||
raClient.AddToUserAgent(userAgent)
|
||||
|
||||
rdClient := authorization.NewRoleDefinitionsClient(settings.SubscriptionID)
|
||||
rdClient := authorization.NewRoleDefinitionsClientWithBaseURI(settings.Environment.ResourceManagerEndpoint, settings.SubscriptionID)
|
||||
rdClient.Authorizer = authorizer
|
||||
rdClient.AddToUserAgent(userAgent)
|
||||
|
||||
|
||||
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
@@ -682,7 +682,7 @@ github.com/hashicorp/vault-plugin-secrets-ad/plugin/util
|
||||
## explicit
|
||||
github.com/hashicorp/vault-plugin-secrets-alicloud
|
||||
github.com/hashicorp/vault-plugin-secrets-alicloud/clients
|
||||
# github.com/hashicorp/vault-plugin-secrets-azure v0.9.0
|
||||
# github.com/hashicorp/vault-plugin-secrets-azure v0.9.1
|
||||
## explicit
|
||||
github.com/hashicorp/vault-plugin-secrets-azure
|
||||
# github.com/hashicorp/vault-plugin-secrets-gcp v0.9.0
|
||||
|
||||
Reference in New Issue
Block a user