constellation/s3proxy/internal/s3/BUILD.bazel
Otto Bittner a7ceda37ea s3proxy: add intial implementation
INSECURE!
The proxy intercepts GetObject and PutObject.
A manual deployment guide is included.
The decryption only relies on a hardcoded, static key.
Do not use with sensitive data; testing only.
* Ticket to track ranged GetObject: AB#3466.
2023-10-06 11:23:32 +02:00

14 lines
428 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "s3",
srcs = ["s3.go"],
importpath = "github.com/edgelesssys/constellation/v2/s3proxy/internal/s3",
visibility = ["//s3proxy:__subpackages__"],
deps = [
"@com_github_aws_aws_sdk_go_v2_config//:config",
"@com_github_aws_aws_sdk_go_v2_service_s3//:s3",
"@com_github_aws_aws_sdk_go_v2_service_s3//types",
],
)