constellation/internal/grpc/dialer/BUILD.bazel
Otto Bittner 8f21972aec
attestation: add awsSEVSNP as new variant (#1900)
* variant: move into internal/attestation
* attesation: move aws attesation into subfolder nitrotpm
* config: add aws-sev-snp variant
* cli: add tf option to enable AWS SNP

For now the implementations in aws/nitrotpm and aws/snp
are identical. They both contain the aws/nitrotpm impl.
A separate commit will add the actual attestation logic.
2023-06-09 15:41:02 +02:00

33 lines
996 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "dialer",
srcs = ["dialer.go"],
importpath = "github.com/edgelesssys/constellation/v2/internal/grpc/dialer",
visibility = ["//:__subpackages__"],
deps = [
"//internal/atls",
"//internal/grpc/atlscredentials",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//credentials/insecure",
],
)
go_test(
name = "dialer_test",
srcs = ["dialer_test.go"],
embed = [":dialer"],
deps = [
"//internal/atls",
"//internal/attestation/variant",
"//internal/grpc/atlscredentials",
"//internal/grpc/testdialer",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//interop/grpc_testing",
"@org_uber_go_goleak//:goleak",
],
)