Execution
Date 23 Feb 2026 16:21:40 +0000
Duration 00:00:24.95
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.13
ara 1.7.4 / 1.7.4
Python 3.10.10
Summary
37 Hosts
1 Tasks
37 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-install-test-key.yaml

---
- name: Install pub key
  hosts: all
  gather_facts: false
  vars:
    ssh_public_key: "{{ lookup('file', 'key') }}"
  tasks:
    - name: Upload key
      ansible.posix.authorized_key:
        user: root
        state: present
        key: "{{ ssh_public_key }}"