-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitignore
33 lines (29 loc) · 838 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Ignore Terraform state and provider files
.terraform/
.terraform.lock.hcl
terraform.tfstate
terraform.tfstate.d
terraform.tfstate.backup
terraform/.terraform/providers/**
terraform/terraform-provider-aws_v5.72.1_x5.exe
terraform/terraform-provider-aws*.exe
terraform/terraform-provider-*.exe
# Ignore Terraform provider binaries
terraform/.terraform/providers/terraform-provider-aws_*.exe
#git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch terraform/terraform-provider-aws_v5.72.1_x5.exe' --prune-empty --tag-name-filter cat -- --all
# Ignore Ansible virtual environment folder
ansible-venv/
# Ignore Python cache and virtual environments
__pycache__/
*.pyc
*.pyo
*.pyd
*.whl
Pipfile.lock
pyvenv.cfg
# Ignore other IDE or OS-specific files
.vscode/
.DS_Store
# Ignore any logs or temporary files
*.log
*.tmp