forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
96459: pkg/cloud: Expand Azure backups functionality r=benbardin a=benbardin pkg/cloud: Expand Azure backups functionality Add KMS support for Azure KeyVaults. Add App Registration authentication for Azure Storage and Azure KeyVault support. Note that ASSUME ROLE is not offered here, as Azure does not support it at this time. It will be available "soon." Release note (enterprise change): Add KMS support for Azure KeyVaults. Add App Registration authentication for Azure Storage and Azure KeyVault support. Fixes: cockroachdb#86903 Co-authored-by: Ben Bardin <[email protected]>
- Loading branch information
Showing
20 changed files
with
625 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -604,6 +604,26 @@ def go_deps(): | |
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/azure-sdk-for-go/sdk/internal/com_github_azure_azure_sdk_for_go_sdk_internal-v1.1.1.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_azure_azure_sdk_for_go_sdk_keyvault_azkeys", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys", | ||
sha256 = "8f29c576ee07c3b8f7ca821927ceec97573479c882285ca71c2a13d92d4b9927", | ||
strip_prefix = "github.com/Azure/azure-sdk-for-go/sdk/keyvault/[email protected]", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys/com_github_azure_azure_sdk_for_go_sdk_keyvault_azkeys-v0.9.0.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_azure_azure_sdk_for_go_sdk_keyvault_internal", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal", | ||
sha256 = "a3a79250f250d01abd0b402649ce9baf7eeebbbad186dc602eb011692fdbec24", | ||
strip_prefix = "github.com/Azure/azure-sdk-for-go/sdk/keyvault/[email protected]", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal/com_github_azure_azure_sdk_for_go_sdk_keyvault_internal-v0.7.0.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_azure_azure_sdk_for_go_sdk_storage_azblob", | ||
build_file_proto_mode = "disable_global", | ||
|
@@ -3550,10 +3570,10 @@ def go_deps(): | |
name = "com_github_golang_jwt_jwt_v4", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/golang-jwt/jwt/v4", | ||
sha256 = "51d00fb75dfa0f4ff7b5597d842c43f53573eca8c58f8bc89b229b9b4853a4ab", | ||
strip_prefix = "github.com/golang-jwt/jwt/v4@v4.0.0", | ||
sha256 = "bea2e7c045b07f50b60211bee94b62c442322ded7fa893e3fda49dcdce0e2908", | ||
strip_prefix = "github.com/golang-jwt/jwt/v4@v4.2.0", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/golang-jwt/jwt/v4/com_github_golang_jwt_jwt_v4-v4.0.0.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/golang-jwt/jwt/v4/com_github_golang_jwt_jwt_v4-v4.2.0.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -6127,10 +6147,10 @@ def go_deps(): | |
name = "com_github_montanaflynn_stats", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/montanaflynn/stats", | ||
sha256 = "25069347054502d9ab97531f0757b916124ba9966ead38f36f98812b37a6acd9", | ||
strip_prefix = "github.com/montanaflynn/[email protected].3", | ||
sha256 = "fac4308cc66d568256e7aafe694ae58603ddeb9bb39965caa550dbe3fbd77ddc", | ||
strip_prefix = "github.com/montanaflynn/[email protected].6", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/montanaflynn/stats/com_github_montanaflynn_stats-v0.6.3.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/montanaflynn/stats/com_github_montanaflynn_stats-v0.6.6.zip", | ||
], | ||
) | ||
go_repository( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.