1# Rudder external inventory script settings
2#
3
4[rudder]
5
6# Your Rudder server API URL, typically:
7# https://rudder.local/rudder/api
8uri = https://rudder.local/rudder/api
9
10# By default, Rudder uses a self-signed certificate. Set this to True
11# to disable certificate validation.
12disable_ssl_certificate_validation = True
13
14# Your Rudder API token, created in the Web interface.
15token = aaabbbccc
16
17# Rudder API version to use, use "latest" for latest available
18# version.
19version = latest
20
21# Property to use as group name in the output.
22# Can generally be "id" or "displayName".
23group_name = displayName
24
25# Fail if there are two groups with the same name or two hosts with the
26# same hostname in the output.
27fail_if_name_collision = True
28
29# We cache the results of Rudder API in a local file
30cache_path = /tmp/ansible-rudder.cache
31
32# The number of seconds a cache file is considered valid. After this many
33# seconds, a new API call will be made, and the cache file will be updated.
34# Set to 0 to disable cache.
35cache_max_age = 500
36