constellation/bazel/toolchains/BUILD.terraform.bazel

9 lines
230 B
Plaintext
Raw Normal View History

genrule(
name = "terraform_bin",
srcs = ["terraform"],
outs = ["terraform_bin_out"],
cmd = "cp $< $@", # Copy the binary to the output directory.
executable = True,
visibility = ["//visibility:public"],
)