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.

34 lines
933 B

  1. # Ansible DigitalOcean external inventory script settings
  2. #
  3. [digital_ocean]
  4. # The module needs your DigitalOcean API Token.
  5. # It may also be specified on the command line via --api-token
  6. # or via the environment variables DO_API_TOKEN or DO_API_KEY
  7. #
  8. #api_token = 123456abcdefg
  9. # API calls to DigitalOcean may be slow. For this reason, we cache the results
  10. # of an API call. Set this to the path you want cache files to be written to.
  11. # One file will be written to this directory:
  12. # - ansible-digital_ocean.cache
  13. #
  14. cache_path = /tmp
  15. # The number of seconds a cache file is considered valid. After this many
  16. # seconds, a new API call will be made, and the cache file will be updated.
  17. #
  18. cache_max_age = 300
  19. # Use the private network IP address instead of the public when available.
  20. #
  21. use_private_network = False
  22. # Pass variables to every group, e.g.:
  23. #
  24. # group_variables = { 'ansible_user': 'root' }
  25. #
  26. group_variables = {}