requirements.yml 913 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # Sample Roles file
  3. # with examples from Ansible Documentation:
  4. # # from galaxy
  5. # - src: yatesr.timezone
  6. #
  7. # # from GitHub
  8. # - src: https://github.com/bennojoy/nginx
  9. #
  10. # # from GitHub, overriding the name and specifying a specific tag
  11. # - src: https://github.com/bennojoy/nginx
  12. # version: master
  13. # name: nginx_role
  14. #
  15. # # from a webserver, where the role is packaged in a tar.gz
  16. # - src: https://some.webserver.example.com/files/master.tar.gz
  17. # name: http-role
  18. #
  19. # # from Bitbucket
  20. # - src: git+https://bitbucket.org/willthames/git-ansible-galaxy
  21. # version: v1.4
  22. #
  23. # # from Bitbucket, alternative syntax and caveats
  24. # - src: https://bitbucket.org/willthames/hg-ansible-galaxy
  25. # scm: hg
  26. #
  27. # # from GitLab or other git-based scm, using git+ssh
  28. # - src: git@gitlab.company.com:mygroup/ansible-base.git
  29. # scm: git
  30. # version: "0.1" # quoted, so YAML doesn't parse this as a floating-point value
  31. #