Skip to content

Instantly share code, notes, and snippets.

@jwatson3d
Created June 10, 2023 02:33
Show Gist options
  • Save jwatson3d/2b7e9ac86e06a526bba5019920affafc to your computer and use it in GitHub Desktop.
Save jwatson3d/2b7e9ac86e06a526bba5019920affafc to your computer and use it in GitHub Desktop.
find . -d -type d -name '.terraform' -exec rm -r {} \;
find . -d -type f -name '.terraform*' -exec rm -r {} \;
find . -d -type f -name '*tfstate*' -exec rm -r {} \;
find . -d -type f -name 'tfplan.out' -exec rm -r {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment