Skip to content

Commit cb18519

Browse files
committed
Clean up: Remove large Terraform files and improve .gitignore
- Remove .terraform/ directory from version control - Remove terraform state files from version control - Enhanced .gitignore with comprehensive exclusions for: - Terraform provider binaries and state files - Python cache and virtual environments - IDE and OS specific files - Docker and log files
1 parent b152d20 commit cb18519

10 files changed

Lines changed: 68 additions & 691 deletions

File tree

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Terraform
2+
.terraform/
3+
.terraform.lock.hcl
4+
*.tfstate
5+
*.tfstate.*
6+
*.tfvars
7+
*.tfvars.json
8+
.terraformrc
9+
terraform.rc
10+
*.tfplan
11+
*.tfplan.*
12+
13+
# Python
14+
__pycache__/
15+
*.py[cod]
16+
*$py.class
17+
*.so
18+
.Python
19+
build/
20+
develop-eggs/
21+
dist/
22+
downloads/
23+
eggs/
24+
.eggs/
25+
lib/
26+
lib64/
27+
parts/
28+
sdist/
29+
var/
30+
wheels/
31+
*.egg-info/
32+
.installed.cfg
33+
*.egg
34+
MANIFEST
35+
36+
# Virtual Environment
37+
venv/
38+
env/
39+
ENV/
40+
.venv/
41+
.env/
42+
43+
# IDE
44+
.vscode/
45+
.idea/
46+
*.swp
47+
*.swo
48+
*~
49+
50+
# OS
51+
.DS_Store
52+
.DS_Store?
53+
._*
54+
.Spotlight-V100
55+
.Trashes
56+
ehthumbs.db
57+
Thumbs.db
58+
59+
# Docker
60+
.dockerignore
61+
62+
# Logs
63+
*.log
64+
logs/
65+
66+
# Temporary files
67+
*.tmp
68+
*.temp

.terraform.lock.hcl

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)