You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- name: 'MONITORING | Host type: lxc_vm'
|
|
set_fact:
|
|
monitoring_entry: >
|
|
{{ { 'address': ansible_host,
|
|
'host_type': 'lxc_vm' } }}
|
|
|
|
- name: 'MONITORING | Append host'
|
|
set_fact:
|
|
monitoring_facts: >
|
|
{{ hostvars[monitoring_host]['monitoring_facts']
|
|
| default({})
|
|
| combine({host_fqdn: monitoring_entry}) }}
|
|
delegate_facts: true
|
|
delegate_to: '{{ monitoring_host }}'
|
|
...
|