-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfotoobo.yaml.sample
More file actions
68 lines (57 loc) · 2.13 KB
/
Copy pathfotoobo.yaml.sample
File metadata and controls
68 lines (57 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
# Note: All paths may be absolute or relative. If they are given relative, it is
# from the cwd where fotoobo has been run.
# The path to a inventory file
inventory: inventory.yaml
# Hide the fotoobo logo
no_logo: false
# Configure how fotoobo logs
# - Each section ("log_file", "log_console" and "log_syslog") can be commented out
# to disable this output completely
# - The log level given on the command line will overwrite all given log-levels for
# each output configuration.
logging:
# The log level
level: INFO
# Log to the console
log_console:
# The file where fotoobo should log to
log_file:
name: fotoobo.log
# Log to a syslog server
# log_syslog:
# host: localhost
# port: 514
# protocol: UDP # UDP or TCP
# If you need more complex logging, provide a python logging configuration
# by yourself. See the "logging-config.yaml.sample" for more information.
# NOTE: This will overwrite all the above settings!
# log_configuration_file: "logging-config.yaml"
# Configure how fotoobo handles audit logs
# Each section ("log_file", "log_console" and "log_syslog") can be commented out
# to disable this output completely
# NOTE: If you have given a log_configuration_file above, the options given here have no effect
#audit_logging:
# # File to log audit logs to
# log_file:
# name: fotoobo_audit.log
#
# # Syslog server to log audit logs to
# log_syslog:
# host: localhost
# port: 514
# protocol: UDP # UDP or TCP
# Configure the Hashicorp Vault service
# Instead of storing credentials in the inventory file you may use VAULT as a placeholder. All asset
# attributes that are VAULT will be retreived from the Hashicorp Vault service specified here.
# The Hashicorp Vault service will use approle login to get the data.
# We may also read the role_id and secret_id from the system environment. This makes it a little bit
# more secure.
vault:
url: https://vault.local
ssl_verify: false
namespace: vault_namespace
data_path: /v1/kv/data/fotoobo
role_id: ...
secret_id: ...
token_file: ~/.cache/token.key