diff --git a/projects/terraform.io/main.tf b/projects/terraform.io/main.tf new file mode 100644 index 00000000..c29efc25 --- /dev/null +++ b/projects/terraform.io/main.tf @@ -0,0 +1,3 @@ +output "fixture" { + value = "Hello, World!" +} \ No newline at end of file diff --git a/projects/terraform.io/package.yml b/projects/terraform.io/package.yml new file mode 100644 index 00000000..17194f40 --- /dev/null +++ b/projects/terraform.io/package.yml @@ -0,0 +1,35 @@ +distributable: + url: https://github.com/hashicorp/terraform/archive/refs/tags/v{{version}}.tar.gz + strip-components: 1 + +versions: + github: hashicorp/terraform/tags + strip: /^v/ + +provides: + - bin/terraform + +build: + script: | + go mod download + go build -v -ldflags="$LDFLAGS" + mkdir -p "{{ prefix }}"/bin + mv terraform "{{ prefix }}"/bin + dependencies: + go.dev: ^1.18 + env: + GO111MODULE: on + LDFLAGS: + [-s, -w, "-X=main.Version={{version}}"] + linux: + # or segmentation fault + # fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575 + LDFLAGS: + - -buildmode=pie + +test: + script: | + terraform init + terraform apply --auto-approve + out=$(terraform output fixture) + test "$out" = '"Hello, World!"' \ No newline at end of file