summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/gathering_facts/collections/ansible_collections/cisco/ios/plugins/modules/ios_facts.py
blob: b79f794100ed8fa666487a5f3fe032d7b8ef655b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/python

DOCUMENTATION = """
---
module: ios_facts
short_description: supporting network facts module
description:
  - supporting network facts module for gather_facts + module_defaults tests
options:
  gather_subset:
    description:
      - When supplied, this argument restricts the facts collected
         to a given subset.
      - Possible values for this argument include
         C(all), C(hardware), C(config), and C(interfaces).
      - Specify a list of values to include a larger subset.
      - Use a value with an initial C(!) to collect all facts except that subset.
    required: false
    default: '!config'
"""

from ansible.module_utils.basic import AnsibleModule


def main():
    """main entry point for module execution
    """
    argument_spec = dict(
        gather_subset=dict(default='!config')
    )
    module = AnsibleModule(argument_spec=argument_spec,
                           supports_check_mode=True)

    module.exit_json(ansible_facts={'gather_subset': module.params['gather_subset'], '_ansible_facts_gathered': True})


if __name__ == '__main__':
    main()