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>
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "aws",
|
|
srcs = ["aws.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/cloud/aws",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/cloud",
|
|
"//internal/cloud/metadata",
|
|
"//internal/constants",
|
|
"//internal/role",
|
|
"@com_github_aws_aws_sdk_go_v2//aws",
|
|
"@com_github_aws_aws_sdk_go_v2_config//:config",
|
|
"@com_github_aws_aws_sdk_go_v2_feature_ec2_imds//:imds",
|
|
"@com_github_aws_aws_sdk_go_v2_service_ec2//:ec2",
|
|
"@com_github_aws_aws_sdk_go_v2_service_ec2//types",
|
|
"@com_github_aws_aws_sdk_go_v2_service_elasticloadbalancingv2//:elasticloadbalancingv2",
|
|
"@com_github_aws_aws_sdk_go_v2_service_elasticloadbalancingv2//types",
|
|
"@com_github_aws_aws_sdk_go_v2_service_resourcegroupstaggingapi//:resourcegroupstaggingapi",
|
|
"@com_github_aws_aws_sdk_go_v2_service_resourcegroupstaggingapi//types",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "aws_test",
|
|
srcs = ["aws_test.go"],
|
|
embed = [":aws"],
|
|
deps = [
|
|
"//internal/cloud",
|
|
"//internal/cloud/metadata",
|
|
"//internal/role",
|
|
"@com_github_aws_aws_sdk_go_v2//aws",
|
|
"@com_github_aws_aws_sdk_go_v2_feature_ec2_imds//:imds",
|
|
"@com_github_aws_aws_sdk_go_v2_service_ec2//:ec2",
|
|
"@com_github_aws_aws_sdk_go_v2_service_ec2//types",
|
|
"@com_github_aws_aws_sdk_go_v2_service_elasticloadbalancingv2//:elasticloadbalancingv2",
|
|
"@com_github_aws_aws_sdk_go_v2_service_elasticloadbalancingv2//types",
|
|
"@com_github_aws_aws_sdk_go_v2_service_resourcegroupstaggingapi//:resourcegroupstaggingapi",
|
|
"@com_github_aws_aws_sdk_go_v2_service_resourcegroupstaggingapi//types",
|
|
"@com_github_stretchr_testify//assert",
|
|
],
|
|
)
|