18 lines
328 B
YAML
18 lines
328 B
YAML
|
|
---
|
|
|
|
- name: Hello World
|
|
gather_facts: false
|
|
hosts: all
|
|
tasks:
|
|
|
|
- name: Get config for VyOS devices
|
|
vyos.vyos.vyos_facts:
|
|
gather_subset: all
|
|
|
|
- name: Display the config
|
|
debug:
|
|
msg: "The hostname is {{ ansible_net_hostname }} and the OS is {{ ansible_net_version }}"
|
|
|
|
|