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.

99 lines
1.2 KiB

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