tfclean is a tool for cleaning up Terraform configuration files by automatically removing applied moved, import, and removed blocks. This helps maintain clean and readable Terraform configurations by eliminating blocks that have already served their purpose.
go install github.com/takaishi/tfclean/cmd/tfclean
You can use the official GitHub Action to install tfclean in your workflows:
- uses: takaishi/tfclean@v1
with:
version: 'latest' # Optional, defaults to latest
Download the appropriate binary for your system from the releases page.
Remove all moved/import/removed blocks regardless of their state:
tfclean /path/to/tffiles
Remove only the blocks that have been successfully applied (requires access to tfstate):
AWS_PROFILE=your_profile tfclean --tfstate s3://path/to/tfstate /path/to/tffiles
-
Smart Block Removal
- Removes moved blocks that have been applied
- Removes import blocks that have been applied
- Removes removed blocks that have been applied
- Option to forcefully remove all moved/import/removed blocks
-
Platform Support
- Supports both x86_64 and ARM64 architectures
- Available for Linux and macOS
You can automate the cleanup of your Terraform configurations using GitHub Actions. Here's a complete example that creates pull requests for cleanup:
name: tfclean
on:
push:
branches:
- main
permissions:
pull-requests: write # Required for creating pull requests
jobs:
tfclean:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
# Setup GitHub App token for PR creation
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.GITHUB_APP_ID }}
private-key: ${{ secrets.GITHUB_APP_PRIVATE_KEY }}
# Configure AWS credentials if using remote state
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: "aws_role_arn_for_oidc"
aws-region: "ap-northeast-1"
# Install and run tfclean
- uses: takaishi/tfclean@v1
# Create PR if changes detected
- name: Check changes
id: diff-check
run: git diff --exit-code || echo "changes_detected=true" >> $GITHUB_OUTPUT
- name: Create Pull Request
if: steps.diff-check.outputs.changes_detected == 'true'
run: |
branch_name=tfclean_$(date +"%Y%m%d%H%M")
git switch -c ${branch_name}
git config --global user.email "[email protected]"
git config --global user.name "Terraform Cleanup Bot"
git add .
git commit -m "chore: auto-remove applied terraform blocks"
git push origin ${branch_name}
gh pr create --base main --head ${branch_name} --title "Auto-remove applied Terraform blocks" --body "This PR removes Terraform blocks that have been successfully applied."
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
This workflow will:
- Run on pushes to the main branch
- Install and run tfclean
- Create a pull request if any blocks were removed
- Use GitHub App authentication for better security
For the GitHub Actions integration, it's recommended to use a GitHub App for authentication instead of personal access tokens. This provides better security and more granular permissions control.