oidc-parent/deployment/ansible.cfg
Jan Dittberner 00c0d3de1a Create basic local playbook and roles
- create ansible structure
- create generated roles
- add hydra_database role
2022-08-10 20:35:03 +02:00

35 lines
1.3 KiB
INI

[defaults]
# (boolean) By default Ansible will issue a warning when received from a task action (module or action plugin)
# These warnings can be silenced by adjusting this setting to False.
action_warnings=True
# (string) Chooses which cache plugin to use, the default 'memory' is ephemeral.
fact_caching=memory
# (pathlist) Comma separated list of Ansible inventory sources
inventory=inventory/local
# (pathspec) Colon separated paths in which Ansible will search for Roles.
roles_path=./roles:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
# (boolean) Toggles the use of persistence for connections.
use_persistent_connections=True
interpreter_python=auto_silent
[privilege_escalation]
# (boolean) Display an agnostic become prompt instead of displaying a prompt containing the command line supplied become method
agnostic_become_prompt=True
# (boolean) This setting controls if become is skipped when remote user and become user are the same. I.E root sudo to root.
# If executable, it will be run and the resulting stdout will be used as the password.
become_allow_same_user=False
[diff]
# (bool) Configuration toggle to tell modules to show differences when in 'changed' status, equivalent to ``--diff``.
always=True
# (integer) How many lines of context to show when displaying the differences between files.
context=3