summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-sanity-validate-modules/ansible_collections/ns/col/plugins/modules/sidecar.py
blob: 8377c40d3266a05babf735252af662f6f3618d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from ansible.module_utils.basic import AnsibleModule


if __name__ == '__main__':
    module = AnsibleModule(argument_spec=dict(
        test=dict(type='str', choices=['foo', 'bar'], default='foo'),
    ))
    module.exit_json(test='foo')