chore: update .gitignore for new repo structure (fix terraform/ exclusion)
This commit is contained in:
52
.gitignore
vendored
52
.gitignore
vendored
@@ -1,15 +1,9 @@
|
|||||||
# macOS system files
|
# macOS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# Icon must end with two \r
|
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
# Thumbnails
|
|
||||||
._*
|
._*
|
||||||
|
|
||||||
# Files that might appear in the root of a volume
|
|
||||||
.DocumentRevisions-V100
|
.DocumentRevisions-V100
|
||||||
.fseventsd
|
.fseventsd
|
||||||
.Spotlight-V100
|
.Spotlight-V100
|
||||||
@@ -17,36 +11,44 @@ Icon
|
|||||||
.Trashes
|
.Trashes
|
||||||
.VolumeIcon.icns
|
.VolumeIcon.icns
|
||||||
.com.apple.timemachine.donotpresent
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
# Directories potentially created on remote AFP share
|
|
||||||
.AppleDB
|
.AppleDB
|
||||||
.AppleDesktop
|
.AppleDesktop
|
||||||
Network Trash Folder
|
Network Trash Folder
|
||||||
Temporary Items
|
Temporary Items
|
||||||
.apdisk
|
.apdisk
|
||||||
|
|
||||||
# VS Code
|
|
||||||
.vscode/
|
|
||||||
|
|
||||||
# macOS metadata
|
|
||||||
*.icloud
|
*.icloud
|
||||||
|
|
||||||
# Terraform
|
# IDE
|
||||||
terraform/
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
.kiro/
|
||||||
|
|
||||||
|
# Terraform (track .tf files, ignore state and runtime)
|
||||||
.terraform/
|
.terraform/
|
||||||
*.tfstate
|
*.tfstate
|
||||||
*.tfstate.backup
|
*.tfstate.backup
|
||||||
|
*.tfvars
|
||||||
# Crash log files
|
!*.tfvars.example
|
||||||
|
!*.pkrvars.hcl
|
||||||
crash.log
|
crash.log
|
||||||
|
|
||||||
# Ignore override files as they are usually used to override resources locally
|
|
||||||
*.override.tf
|
*.override.tf
|
||||||
*.override.tf.json
|
*.override.tf.json
|
||||||
|
|
||||||
# Ignore CLI configuration files
|
|
||||||
.terraformrc
|
.terraformrc
|
||||||
.terraformrc.json
|
terraform.rc
|
||||||
|
|
||||||
# Ignore secrets
|
# Ansible
|
||||||
doppler-token.yaml.DS_Store
|
*.retry
|
||||||
|
ansible/vault/*.vault
|
||||||
|
|
||||||
|
# Packer
|
||||||
|
packer_cache/
|
||||||
|
|
||||||
|
# Secrets
|
||||||
|
*.pem
|
||||||
|
*.key
|
||||||
|
|
||||||
|
# Local paths
|
||||||
|
~/
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
doppler-token.yaml
|
||||||
|
|||||||
Reference in New Issue
Block a user