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.
55 lines
1.2 KiB
Python
55 lines
1.2 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_cross_binary", "go_library")
|
|
load("@rules_oci//oci:defs.bzl", "oci_image")
|
|
load("@rules_pkg//:pkg.bzl", "pkg_tar")
|
|
|
|
go_library(
|
|
name = "cmd_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/verify/cmd",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//internal/attestation/choose",
|
|
"//internal/attestation/variant",
|
|
"//internal/constants",
|
|
"//internal/logger",
|
|
"//verify/server",
|
|
"@org_uber_go_zap//:zap",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "cmd",
|
|
embed = [":cmd_lib"],
|
|
# keep
|
|
pure = "on",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_cross_binary(
|
|
name = "verify_linux_amd64",
|
|
platform = "@io_bazel_rules_go//go/toolchain:linux_amd64",
|
|
target = ":cmd",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
pkg_tar(
|
|
name = "layer",
|
|
srcs = [
|
|
":verify_linux_amd64",
|
|
],
|
|
mode = "0755",
|
|
remap_paths = {"/verify_linux_amd64": "/verify"},
|
|
)
|
|
|
|
oci_image(
|
|
name = "verificationservice",
|
|
architecture = "amd64",
|
|
base = "@distroless_static",
|
|
entrypoint = ["/verify"],
|
|
os = "linux",
|
|
tars = [
|
|
":layer",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|