LoginSignup
1
0

More than 5 years have passed since last update.

terraform-provider-aws を手元で試す

Last updated at Posted at 2018-02-23

terraform-provider-awsを改造してbuildして手元で使う を参考に書き換えた terraform-provider-aws をローカルで利用しようとした時の補足的なメモ

terraform-provider-aws を手元でビルドして設置

go get -d github.com/terraform-providers/terraform-provider-aws
cd $GOPATH/src/github.com/terraform-providers/terraform-provider-aws
make build

mkdir -p ~/.terraform.d/plugins
cp $GOPATH/bin/terraform-provider-aws ~/.terraform.d/plugins

利用してるプロジェクトで使う

cd /path/to/terraform-project
rm .terraform/plugins/darwin_amd64/terraform-provider-aws*
terraform init
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0