mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
781ac85711
* cli: refactor `cloudcmd/validators` Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * make struct fields private Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * use errors.New Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * make struct fields private in usage * fix casing --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com>
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "cloudcmd",
|
|
srcs = [
|
|
"apply.go",
|
|
"clients.go",
|
|
"cloudcmd.go",
|
|
"iam.go",
|
|
"iamupgrade.go",
|
|
"rollback.go",
|
|
"serviceaccount.go",
|
|
"terminate.go",
|
|
"tfplan.go",
|
|
"tfvars.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd",
|
|
visibility = ["//cli:__subpackages__"],
|
|
deps = [
|
|
"//cli/internal/libvirt",
|
|
"//cli/internal/terraform",
|
|
"//internal/attestation/variant",
|
|
"//internal/cloud/azureshared",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/cloud/gcpshared",
|
|
"//internal/cloud/openstack",
|
|
"//internal/config",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/imagefetcher",
|
|
"//internal/maa",
|
|
"//internal/role",
|
|
"//internal/state",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "cloudcmd_test",
|
|
srcs = [
|
|
"apply_test.go",
|
|
"clients_test.go",
|
|
"iam_test.go",
|
|
"rollback_test.go",
|
|
"terminate_test.go",
|
|
"tfplan_test.go",
|
|
"tfvars_test.go",
|
|
],
|
|
embed = [":cloudcmd"],
|
|
deps = [
|
|
"//cli/internal/terraform",
|
|
"//internal/attestation/variant",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/cloud/gcpshared",
|
|
"//internal/config",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/state",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|