mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
4 years ago
|
#!/usr/bin/python
|
||
|
# (c) 2021 Ansible Project
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule, env_fallback
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=dict(
|
||
|
explicit_pass=dict(type='str', no_log=True),
|
||
|
fallback_pass=dict(type='str', no_log=True, fallback=(env_fallback, ['SECRET_ENV'])),
|
||
|
default_pass=dict(type='str', no_log=True, default='zyx'),
|
||
|
normal=dict(type='str', default='plaintext'),
|
||
|
suboption=dict(
|
||
|
type='dict',
|
||
|
options=dict(
|
||
|
explicit_sub_pass=dict(type='str', no_log=True),
|
||
|
fallback_sub_pass=dict(type='str', no_log=True, fallback=(env_fallback, ['SECRET_SUB_ENV'])),
|
||
|
default_sub_pass=dict(type='str', no_log=True, default='xvu'),
|
||
|
normal=dict(type='str', default='plaintext'),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
module.exit_json(changed=False)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|