constellation/internal/attestation/choose/BUILD.bazel
Daniel Weiße d7a2ddd939
config: add separate option for handling attestation parameters (#1623)
* Add attestation options to config

* Add join-config migration path for clusters with old measurement format

* Always create MAA provider for Azure SNP clusters

* Remove confidential VM option from provider in favor of attestation options

* cli: add config migrate command to handle config migration (#1678)

---------

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2023-05-03 11:11:53 +02:00

34 lines
961 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "choose",
srcs = ["choose.go"],
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/choose",
visibility = ["//:__subpackages__"],
deps = [
"//internal/atls",
"//internal/attestation/aws",
"//internal/attestation/azure/snp",
"//internal/attestation/azure/trustedlaunch",
"//internal/attestation/gcp",
"//internal/attestation/qemu",
"//internal/attestation/vtpm",
"//internal/config",
"//internal/variant",
],
)
go_test(
name = "choose_test",
srcs = ["choose_test.go"],
embed = [":choose"],
deps = [
"//internal/attestation/measurements",
"//internal/config",
"//internal/variant",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)