ansible-doctor/docs/content/configuration/defaults.md

43 lines
962 B
Markdown
Raw Normal View History

2020-01-16 11:27:46 +01:00
---
title: Default settings
---
2020-06-03 16:22:56 +02:00
<!-- prettier-ignore-start -->
2020-06-02 22:17:46 +02:00
<!-- markdownlint-disable -->
2020-01-16 11:27:46 +01:00
{{< highlight YAML "linenos=table" >}}
---
# default is your current working dir
role_dir:
2020-01-22 13:07:05 +01:00
# default is the basename of 'role_name'
role_name:
2020-06-02 22:17:46 +02:00
# don't write anything to file system
2020-01-16 11:27:46 +01:00
dry_run: False
logging:
# possible options debug | info | warning | error | critical
level: "warning"
# you can enable json logging if a parsable output is required
json: False
# path to write rendered template file
# default is your current working dir
output_dir:
# default is in-build templates dir
template_dir:
template: readme
# don't ask to overwrite if output file exists
force_overwrite: False
# load custom header from given file and append template output
# to it before write.
custom_header: ""
exclude_files: []
# Examples
# exclude_files:
# - molecule/
# - files/**/*.py
{{< /highlight >}}
<!-- markdownlint-restore -->
2020-06-03 16:22:56 +02:00
<!-- prettier-ignore-end -->