mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
8f21972aec
* 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.
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "gcp",
|
|
srcs = [
|
|
"gcp.go",
|
|
"issuer.go",
|
|
"validator.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/gcp",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/attestation",
|
|
"//internal/attestation/variant",
|
|
"//internal/attestation/vtpm",
|
|
"//internal/config",
|
|
"@com_github_google_go_tpm_tools//client",
|
|
"@com_github_google_go_tpm_tools//proto/attest",
|
|
"@com_github_googleapis_gax_go_v2//:gax-go",
|
|
"@com_google_cloud_go_compute//apiv1",
|
|
"@com_google_cloud_go_compute//apiv1/computepb",
|
|
"@com_google_cloud_go_compute_metadata//:metadata",
|
|
"@org_golang_google_api//option",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "gcp_test",
|
|
srcs = [
|
|
"issuer_test.go",
|
|
"validator_test.go",
|
|
],
|
|
embed = [":gcp"],
|
|
deps = [
|
|
"//internal/attestation/vtpm",
|
|
"@com_github_google_go_tpm_tools//proto/attest",
|
|
"@com_github_googleapis_gax_go_v2//:gax-go",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@com_google_cloud_go_compute//apiv1/computepb",
|
|
"@org_golang_google_api//option",
|
|
"@org_golang_google_protobuf//proto",
|
|
],
|
|
)
|