diff options
| author | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
| commit | d3e770254de0bb301815ca87257c8b1a357d06c4 (patch) | |
| tree | 358c814be2a06b9e2009905f14938243286b8d82 /.gitignore | |
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..747a966 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # Terraform | ||
| 2 | .terraform/ | ||
| 3 | terraform.tfstate | ||
| 4 | terraform.tfstate.* | ||
| 5 | *.tfvars | ||
| 6 | *.tfvars.json | ||
| 7 | crash.log | ||
| 8 | crash.*.log | ||
| 9 | override.tf | ||
| 10 | override.tf.json | ||
| 11 | *_override.tf | ||
| 12 | *_override.tf.json | ||
| 13 | |||
| 14 | # Python | ||
| 15 | __pycache__/ | ||
| 16 | *.py[cod] | ||
| 17 | *.egg-info/ | ||
| 18 | .pytest_cache/ | ||
| 19 | .venv/ | ||
| 20 | venv/ | ||
| 21 | |||
| 22 | # OS | ||
| 23 | .DS_Store | ||
| 24 | Thumbs.db | ||
| 25 | |||
| 26 | # Editors | ||
| 27 | .idea/ | ||
| 28 | .vscode/ | ||
| 29 | *.swp | ||
