mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
d15968bed7
* bootstrapper: make Azure auth method configurable on cluster init * azure: convert uami resource ID to clientID Co-authored-by: 3u13r <lc@edgeless.systems>
29 lines
706 B
Python
29 lines
706 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "azureshared",
|
|
srcs = [
|
|
"appcredentials.go",
|
|
"authmethod_string.go",
|
|
"azureshared.go",
|
|
"metadata.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/cloud/azureshared",
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
go_test(
|
|
name = "azureshared_test",
|
|
srcs = [
|
|
"appcredentials_test.go",
|
|
"metadata_test.go",
|
|
],
|
|
embed = [":azureshared"],
|
|
deps = [
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|