summaryrefslogtreecommitdiffstats
path: root/ansible_collections/cisco/meraki/playbooks/devices_info.yml
blob: 934f31bfed7a7e4e45a73208af2bef18931b5e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- hosts: localhost
  gather_facts: false
  tasks:
    - name: Get Device
      cisco.meraki.devices_info:
        meraki_suppress_logging: true
        organizationId: "828099381482762270"
        # serial: QBSD-36C3-473D
        # tags: ["recently-added"]
        # productTypes: ["appliance"]
        perPage: 3
        total_pages: -1
      register: result

    - name: Show result
      ansible.builtin.debug:
        msg: "{{ result }}"