This repository was archived by the owner on Mar 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
98 lines (83 loc) · 5.43 KB
/
.gitignore
File metadata and controls
98 lines (83 loc) · 5.43 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# ═══════════════════════════════════════════════════════════════════════════════════════
# PPCC25 TERRAFORM POWER PLATFORM GOVERNANCE - GITIGNORE
# Organized by category with clear sections for maintainability
# ═══════════════════════════════════════════════════════════════════════════════════════
# ──────────────────────────────────────────────────────────────────────────────────────
# TERRAFORM STATE & RUNTIME FILES
# ──────────────────────────────────────────────────────────────────────────────────────
*.tfstate
*.tfstate.*
.terraform/
.terraform.lock.hcl
tfplan
*.log
crash.log
crash.*.log
# ──────────────────────────────────────────────────────────────────────────────────────
# TERRAFORM VARIABLES & CONFIGURATION
# ──────────────────────────────────────────────────────────────────────────────────────
# Block sensitive tfvars files everywhere
*.tfvars
!terraform.tfvars.example
# Allow tfvars files in configurations/ directory (these are templates/examples)
!configurations/**/*.tfvars
# Environment configuration files (contain sensitive data)
*.env
*.env.*
!*.env.example
# ──────────────────────────────────────────────────────────────────────────────────────
# DEVELOPMENT ENVIRONMENT FILES
# ──────────────────────────────────────────────────────────────────────────────────────
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*.code-workspace
# Operating system files
.DS_Store
Thumbs.db
# ──────────────────────────────────────────────────────────────────────────────────────
# TEMPORARY & BACKUP FILES
# ──────────────────────────────────────────────────────────────────────────────────────
# Backup files
*.backup
*.bak
# Test and temporary files
test.tf
*.tmp
*~
# ──────────────────────────────────────────────────────────────────────────────────────
# TOOL INSTALLATION & ARTIFACTS
# ──────────────────────────────────────────────────────────────────────────────────────
# Installation packages
*.tar.gz
*.zip
*.deb
*.rpm
# Tool binaries (from setup workflows)
terraform-docs
tflint
actionlint
# ──────────────────────────────────────────────────────────────────────────────────────
# PROJECT-SPECIFIC EXCLUSIONS
# ──────────────────────────────────────────────────────────────────────────────────────
# Implementation planning files (internal documentation)
plans/
# Generated reports with timing/failure data
reports/*-failed-*
reports/*-interrupted-*
reports/baseline-*.txt
# ──────────────────────────────────────────────────────────────────────────────────────
# CACHE & BUILD ARTIFACTS
# ──────────────────────────────────────────────────────────────────────────────────────
# Node.js (if used for tooling)
node_modules/
npm-debug.log*
# Python cache (for YAML tools)
__pycache__/
*.py[cod]
*.egg-info/
# Go modules (if using Go tools)
go.sum
vendor/