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.

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