-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
61 lines (48 loc) · 1.01 KB
/
.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
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
# Ignore Terraform files
*.tfstate
*.tfstate.*
.terraform/
terraform.tfvars
.terraform.lock.hcl
# Ignore Crash log
crash.log
# Ignore override files as they are usually used to override resources locally
override.tf
override.tf.json
*_override.tf
*_override.tf.json
# Ignore auto-generated files by Terraform providers
.terraformrc
terraform.rc
# Ignore any .env files or environment-specific config
.env
.env.*
# Ignore log files and system files
*.log
*.DS_Store
# Ignore SSH key files (if any are being generated)
*.pem
*.key
# Ignore local directories for AWS CLI
.aws/
# Ignore any credentials or AWS-related configuration files
.credentials
.aws/credentials
.aws/config
# Ignore editor/IDE files
.vscode/
.idea/
# Ignore build artifacts
node_modules/
dist/
package-lock.json
# Ignore Docker-related files (if applicable)
docker-compose.override.yml
docker-compose.yml
.dockerignore
# Ignore any Python virtual environment (if used for scripting)
venv/
__pycache__/
*.py[cod]
# Ignore temporary system files
Thumbs.db