feat: extract envbuilder binary from builder image ()

- Adds workspace_folder parameter.
- Adds functionality to extract the envbuilder binary from the builder image.
- Drive-by: updates provider address.
This commit is contained in:
Cian Johnston 2024-08-03 19:55:55 +01:00 committed by GitHub
commit 88ad94f356
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 134 additions and 25 deletions

View file

@ -7,9 +7,14 @@ test: testacc
testacc:
TF_ACC=1 go test ./... -v $(TESTARGS) -timeout 120m
fmt: examples/*/*.tf
fmt: fmt/tf fmt/go
fmt/tf: $(shell find . -type f -name '*.tf')
terraform fmt -recursive
fmt/go: $(shell find . -type f -name '*.go')
go run mvdan.cc/gofumpt@v0.6.0 -l -w .
gen:
go generate