mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-08 06:08:04 -05:00
24 lines
618 B
Python
24 lines
618 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "internal",
|
||
|
srcs = [
|
||
|
"filebeat.go",
|
||
|
"logstash.go",
|
||
|
"prepare.go",
|
||
|
],
|
||
|
embedsrcs = [
|
||
|
"templates/filebeat/values.yml",
|
||
|
"templates/logstash/values.yml",
|
||
|
],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/hack/logcollector/internal",
|
||
|
visibility = ["//hack/logcollector:__subpackages__"],
|
||
|
deps = [
|
||
|
"//debugd/filebeat",
|
||
|
"//debugd/logstash",
|
||
|
"//internal/file",
|
||
|
"@com_github_spf13_afero//:afero",
|
||
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
||
|
],
|
||
|
)
|