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