blob: 1843791106b24d7f778e96bc965f33e526241c32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
- hosts: localhost
vars:
organization_id: 828099381482762270
gather_facts: false
tasks:
- name: Get all organization's devices statuses
cisco.meraki.organizations_devices_statuses_info:
organizationId: "{{ organization_id }}"
register: result
- name: Show result
ansible.builtin.debug:
msg: "{{ result }}"
|