-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
52 lines (39 loc) · 888 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Terraform state files
*.tfstate
*.tfstate.*
# Terraform crash log files
crash.log
# Terraform variable files containing sensitive data
terraform.tfvars
*.tfvars
# Terraform plan files
*.tfplan
# Directory for Terraform's local module cache
.terraform/
# .terraform.lock.hcl keeps track of module and provider versions
# It can be included in version control, but may be ignored in some workflows
# Uncomment the following line if you want to ignore it
.terraform.lock.hcl
# Sensitive files (e.g., key files)
*.pem
*.key
*.crt
*.cer
# Ignore Python virtual environment directories (if any)
venv/
.venv/
# Ignore AWS CLI credentials and configuration files
.aws/
# Ignore Snowflake private key files
*.p8
# Ignore local execution logs
*.log
# Ignore IDE or editor specific files
.vscode/
.idea/
*.swp
*~
# Ignore macOS Finder files
.DS_Store
# Ignore Linux temporary files
*~