mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
901edd420b
* terraform: remove cloud logging apps * internal/cloud: remove loggers * bootstrapper: remove logging * qemu-metadata-api: remove logging endpoint * docs: add instructions on how to get boot logs * bazel: tidy * docs: fix typo * cloud: remove unused types * Update go.mod Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * bazel: tidy * Update docs/docs/workflows/troubleshooting.md Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> * Update docs/docs/workflows/troubleshooting.md Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> * Update docs/docs/workflows/troubleshooting.md Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> * docs: elaborate on how to get boot logs * bazel: tidy --------- Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com>
44 lines
1.3 KiB
Python
44 lines
1.3 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",
|
|
"interface.go",
|
|
"wrappers.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/cloud/gcp",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/cloud",
|
|
"//internal/cloud/gcpshared",
|
|
"//internal/cloud/metadata",
|
|
"//internal/role",
|
|
"@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//iterator",
|
|
"@org_golang_google_protobuf//proto",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "gcp_test",
|
|
srcs = ["gcp_test.go"],
|
|
embed = [":gcp"],
|
|
deps = [
|
|
"//internal/cloud",
|
|
"//internal/cloud/metadata",
|
|
"//internal/role",
|
|
"@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//iterator",
|
|
"@org_golang_google_protobuf//proto",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|