1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Terraform の plugins を全消しする

Posted at

aws provider が地味にディスク容量を食うので、カレントディレクトリ配下の plugins を消す。

削除対象確認

$ find -type d -name 'plugins' | grep -P '.terraform/plugins$' | xargs du -sh
182M    ./foo/bar/.terraform/plugins
182M    ./baz/qux/.terraform/plugins
   :

削除

find -type d -name 'plugins' | grep -P '.terraform/plugins$' | xargs rm -r

備考

provider plugin cache を設定することで、provider の乱立を防ぐことができる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?