bosh-bootloader icon indicating copy to clipboard operation
bosh-bootloader copied to clipboard

bbl up gives error with regards to bbl-terraform on mac

Open renuy opened this issue 9 months ago • 2 comments

bbl --version
bbl 8.4.103 (darwin/amd64)

command bbl --state-dir bbl-state/ --iaas=gcp --gcp-service-account-key=/tmp/gcp.key --gcp-region=us-west2 --name=joey up

Error on mac “bbl-terraform” was not opened because it contains malware. This action did not harm your Mac.

renuy avatar Apr 21 '25 12:04 renuy

This is due to binary signing and macOS being sensitive to that. Reworking this requires a lot of effort, which is currently not feasible.

A workaround is to use a terraform binary that you have in addition to bbl.

You can either provide it by running bbl --terraform-binary $(command -v terraform) ... or by defining export BBL_TERRAFORM_BINARY=$(command -v terraform) and then calling your regular bbl command.

peanball avatar May 08 '25 15:05 peanball