Files
argus/.gitignore
Argus Bot d775525b2b feat: initial Argus - AI-powered FinOps agent
Argus is an all-seeing eye on your AWS costs:
- Scan for optimization opportunities (unused resources, oversized instances)
- Evaluate Terraform plans for cost impact
- Generate weekly/monthly cost reports
- Integrate with Atlantis for pre-apply cost analysis

Components:
- CLI tool (argus scan/evaluate/report)
- GitHub Action for CI/CD integration
- AWS Scanner for resource analysis
- AI engine for intelligent recommendations

Features:
- Unused EBS volumes, idle EC2, oversized RDS
- Cost delta on Terraform changes
- Atlantis integration
- Slack/email notifications
2026-02-01 06:42:51 +00:00

59 lines
436 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
venv/
.venv/
ENV/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Testing
.tox/
.nox/
.coverage
htmlcov/
.pytest_cache/
# Terraform
.terraform/
*.tfstate
*.tfstate.*
*.tfplan
crash.log
# Secrets
.env
*.pem
*.key
secrets/
# OS
.DS_Store
Thumbs.db
# Temp
/tmp/
*.log