You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
1.2 KiB

  1. .vagrant
  2. *.retry
  3. **/vagrant_ansible_inventory
  4. *.iml
  5. temp
  6. .idea
  7. .tox
  8. .cache
  9. *.bak
  10. *.tfstate
  11. *.tfstate.backup
  12. .terraform/
  13. contrib/terraform/aws/credentials.tfvars
  14. /ssh-bastion.conf
  15. **/*.sw[pon]
  16. *~
  17. vagrant/
  18. # Ansible inventory
  19. inventory/*
  20. !inventory/local
  21. !inventory/sample
  22. inventory/*/artifacts/
  23. # Byte-compiled / optimized / DLL files
  24. __pycache__/
  25. *.py[cod]
  26. *$py.class
  27. # Distribution / packaging
  28. .Python
  29. env/
  30. build/
  31. credentials/
  32. develop-eggs/
  33. dist/
  34. downloads/
  35. eggs/
  36. .eggs/
  37. parts/
  38. sdist/
  39. var/
  40. *.egg-info/
  41. .installed.cfg
  42. *.egg
  43. # PyInstaller
  44. # Usually these files are written by a python script from a template
  45. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  46. *.manifest
  47. *.spec
  48. # Installer logs
  49. pip-log.txt
  50. pip-delete-this-directory.txt
  51. # Unit test / coverage reports
  52. htmlcov/
  53. .tox/
  54. .coverage
  55. .coverage.*
  56. .cache
  57. nosetests.xml
  58. coverage.xml
  59. *,cover
  60. .hypothesis/
  61. # Translations
  62. *.mo
  63. *.pot
  64. # Django stuff:
  65. *.log
  66. local_settings.py
  67. # Flask stuff:
  68. instance/
  69. .webassets-cache
  70. # Scrapy stuff:
  71. .scrapy
  72. # Sphinx documentation
  73. docs/_build/
  74. # PyBuilder
  75. target/
  76. # IPython Notebook
  77. .ipynb_checkpoints
  78. # pyenv
  79. .python-version
  80. # dotenv
  81. .env
  82. # virtualenv
  83. venv/
  84. ENV/