What to gather.
Scope to a specific network.
Scope to a specific organization.
A template task showing all available parameters with their defaults or example values.
- name: Meraki Facts task cisco.meraki_rm.meraki_facts: gather_subset: - "gather_subset_item" network_id: "192.168.1.0/24" organization_id: "organization_id_value"
- name: Meraki Facts task cisco.meraki_rm.meraki_facts: gather_subset: # optional - "gather_subset_item" network_id: "192.168.1.0/24" # optional organization_id: "organization_id_value" # optional
- name: Meraki Facts task cisco.meraki_rm.meraki_facts: gather_subset: # (list, optional) What to gather. - "gather_subset_item" network_id: "192.168.1.0/24" # (str, optional) Scope to a specific network. organization_id: "organization_id_value" # (str, optional) Scope to a specific organization.
- name: Gather all Meraki facts cisco.meraki_rm.meraki_facts: organization_id: "N_123456789012345678" gather_subset: - all register: all_facts
- name: Display gathered facts ansible.builtin.debug: var: all_facts
- name: Gather only organization info cisco.meraki_rm.meraki_facts: organization_id: "N_123456789012345678" gather_subset: - organizations
- name: Gather networks for a specific org cisco.meraki_rm.meraki_facts: organization_id: "N_123456789012345678" gather_subset: - networks
--- # Gather all Meraki facts - name: Gather all Meraki facts cisco.meraki_rm.meraki_facts: organization_id: "N_123456789012345678" gather_subset: - all register: all_facts - name: Display gathered facts ansible.builtin.debug: var: all_facts - name: Gather only organization info cisco.meraki_rm.meraki_facts: organization_id: "N_123456789012345678" gather_subset: - organizations - name: Gather networks for a specific org cisco.meraki_rm.meraki_facts: organization_id: "N_123456789012345678" gather_subset: - networks