Skip to content

Instantly share code, notes, and snippets.

@mhmdio
Last active March 29, 2022 08:41
Show Gist options
  • Save mhmdio/37bbeae5305e8b77d328945ab3a94414 to your computer and use it in GitHub Desktop.
Save mhmdio/37bbeae5305e8b77d328945ab3a94414 to your computer and use it in GitHub Desktop.
Setup Terraform cache

plugin-cache

dot-terraform-rc:

plugin_cache_dir   = "$HOME/.terraform.d/plugin-cache"
echo "Setup Terraform cache"
if [ ! -f $HOME/.terraform.d/plugin-cache ];then
  mkdir -p $HOME/.terraform.d/plugin-cache
  cp dot-terraform-rc $HOME/.terraformrc
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment