mirror of
https://github.com/wahyd4/terraform-provider-confluentcloud.git
synced 2026-08-09 04:25:51 +10:00
15 lines
219 B
Bash
Executable File
15 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
ARCH=go env GOARCH
|
|
OS=go env GOOS
|
|
|
|
go build
|
|
|
|
mv bin/${OS}-${ARCH}/terraform-provider-confluentcloud ~/.terraform.d/plugins/${OS}_${ARCH}/
|
|
cd examples
|
|
terraform init
|
|
terraform plan
|
|
terraform output
|