constellation/internal/cloud/azure/BUILD.bazel
renovate[bot] dd8539f54b
deps: update Go dependencies (#3802)
* deps: update Go dependencies

* bazel: update rules_go to 0.54.0

* deps: rollback go-tpm-tools

* renovate: block updates for go-tpm-tools

* renovate: group rules_go updates

* cloud/azure: update iptables call

* deps: tidy all modules

* renovate: remove concurrent PR limit

* attestation: replace expired AWS cert

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
2025-05-06 16:43:53 +02:00

56 lines
1.9 KiB
Text

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "azure",
srcs = [
"azure.go",
"imds.go",
"interface.go",
"iptables_cross.go",
"iptables_linux.go",
],
importpath = "github.com/edgelesssys/constellation/v2/internal/cloud/azure",
visibility = ["//:__subpackages__"],
deps = [
"//internal/cloud",
"//internal/cloud/azureshared",
"//internal/cloud/metadata",
"//internal/constants",
"//internal/role",
"@com_github_azure_azure_sdk_for_go_sdk_azcore//runtime",
"@com_github_azure_azure_sdk_for_go_sdk_azidentity//:azidentity",
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_compute_armcompute_v6//:armcompute",
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_network_armnetwork_v6//:armnetwork",
] + select({
"@io_bazel_rules_go//go/platform:android": [
"@io_k8s_kubernetes//pkg/util/iptables",
],
"@io_bazel_rules_go//go/platform:linux": [
"@io_k8s_kubernetes//pkg/util/iptables",
],
"//conditions:default": [],
}),
)
go_test(
name = "azure_test",
srcs = [
"azure_test.go",
"imds_test.go",
],
embed = [":azure"],
deps = [
"//internal/cloud",
"//internal/cloud/metadata",
"//internal/role",
"@com_github_azure_azure_sdk_for_go_sdk_azcore//runtime",
"@com_github_azure_azure_sdk_for_go_sdk_azcore//to",
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_compute_armcompute_v6//:armcompute",
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_network_armnetwork_v6//:armnetwork",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@org_golang_google_grpc//test/bufconn",
"@org_uber_go_goleak//:goleak",
],
)