mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
968cdc1a38
* cli: move internal packages Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: fix buildfiles Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: fix exclude dir Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: move back libraries that will not be used by TF provider Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "terraform",
|
|
srcs = [
|
|
"loader.go",
|
|
"logging.go",
|
|
"terraform.go",
|
|
"variables.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/cli/internal/terraform",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/state",
|
|
"//terraform",
|
|
"@com_github_hashicorp_go_version//:go-version",
|
|
"@com_github_hashicorp_hc_install//:hc-install",
|
|
"@com_github_hashicorp_hc_install//fs",
|
|
"@com_github_hashicorp_hc_install//product",
|
|
"@com_github_hashicorp_hc_install//releases",
|
|
"@com_github_hashicorp_hc_install//src",
|
|
"@com_github_hashicorp_hcl_v2//:hcl",
|
|
"@com_github_hashicorp_hcl_v2//gohcl",
|
|
"@com_github_hashicorp_hcl_v2//hclsyntax",
|
|
"@com_github_hashicorp_hcl_v2//hclwrite",
|
|
"@com_github_hashicorp_terraform_exec//tfexec",
|
|
"@com_github_hashicorp_terraform_json//:terraform-json",
|
|
"@com_github_spf13_afero//:afero",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "terraform_test",
|
|
srcs = [
|
|
"loader_test.go",
|
|
"terraform_test.go",
|
|
"variables_test.go",
|
|
],
|
|
embed = [":terraform"],
|
|
deps = [
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/role",
|
|
"//internal/state",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_azcore//to",
|
|
"@com_github_hashicorp_terraform_exec//tfexec",
|
|
"@com_github_hashicorp_terraform_json//:terraform-json",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|