-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
41 lines (31 loc) · 742 Bytes
/
.gitignore
File metadata and controls
41 lines (31 loc) · 742 Bytes
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
###### root/.gitignore ######
# Ignore Terraform working directory
**/.terraform/*
# Ignore Terraform state files
*.tfstate
*.tfstate.*
# Ignore Terraform backup files
*.backup
# Ignore Terraform crash logs
crash.log
crash.*.log
# Ignore Terraform variable files (Sensitive Data)
*.tfvars
*.tfvars.json
# Ignore Terraform plan files (Generated during `terraform plan -out=tfplan`)
*.tfplan
# Ignore Terraform override files (Local customization)
override.tf
override.tf.json
*_override.tf
*_override.tf.json
# Ignore Terraform provider lock files (Can be regenerated)
.terraform.lock.hcl
# Ignore Terraform CLI configuration files
.terraformrc
terraform.rc
# Ignore editor and OS-generated files
.vscode/
.idea/
.DS_Store
Thumbs.db