mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-03 04:26:20 -04:00

* 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.
15 lines
459 B
Text
15 lines
459 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "migration",
|
|
srcs = ["migration.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/config/migration",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/attestation/idkeydigest",
|
|
"//internal/attestation/measurements",
|
|
"//internal/attestation/variant",
|
|
"//internal/config",
|
|
"//internal/file",
|
|
],
|
|
)
|