sed -i -e "s/dev/dev - `git rev-parse --short HEAD`/" terraform/version.go
ビルド
make devすると全pluginやproviderがコンパイルされ、非常に時間がかかる(特に最近は対応範囲の広がりが著しく、生成されるバイナリの総容量が増加傾向)。
よって、特定のproviderを指定して時間短縮する。以下はaws providerで作業している場合。
1234567
$ make core-dev plugin-dev PLUGIN=provider-aws
==> Checking that code complies with gofmt requirements...
/Users/ijin/golang/bin/stringer
go generate $(go list ./... | grep -v /vendor/)
go install github.com/hashicorp/terraform
go install github.com/hashicorp/terraform/builtin/bins/provider-aws
mv /Users/ijin/golang/bin/provider-aws /Users/ijin/golang/bin/terraform-provider-aws
確認
12
$ terraform version
Terraform v0.6.15-dev - 123abcd