2019-02-19 20:23:26 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright: (c) 2017, Brian Coca <bcoca@redhat.com>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2017-03-24 19:39:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
|
|
|
|
# Standard files documentation fragment
|
2019-02-19 20:23:26 +00:00
|
|
|
DOCUMENTATION = r'''
|
2017-03-24 19:39:25 +00:00
|
|
|
options:
|
|
|
|
decrypt:
|
|
|
|
description:
|
|
|
|
- This option controls the autodecryption of source files using vault.
|
2019-02-19 20:23:26 +00:00
|
|
|
type: bool
|
|
|
|
default: yes
|
|
|
|
version_added: '2.4'
|
|
|
|
'''
|