mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
4284f892ce
* rename to attestationconfigapi + put client and fetcher inside pkg * rename api/version to versionsapi and put fetcher + client inside pkg * rename AttestationConfigAPIFetcher to Fetcher
19 lines
602 B
Python
19 lines
602 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "gcp",
|
|
srcs = ["gcpupload.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/osimage/gcp",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/versionsapi",
|
|
"//internal/logger",
|
|
"//internal/osimage",
|
|
"//internal/osimage/secureboot",
|
|
"@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_storage//:storage",
|
|
],
|
|
)
|