Ansible message to matrix
Publish date: Sep 18, 2022
Отправить сообщение в комнату matrix
Будет отправлено “uptime” в указанную комнату с указанных хостов
- name: python3-pip
ansible.builtin.apt:
name: python3-pip
- name: python3-pip
ansible.builtin.command: pip3 install matrix-client
- name: Create variable from command
command: "uptime"
register: command_output
- name: Send matrix notification with token
community.general.matrix:
msg_plain: "{{ command_output.stdout }}"
msg_html: "{{ command_output.stdout }}"
room_id: ""
hs_url: ""
token: ""