Execution
Date 06 Mar 2026 13:45:47 +0000
Duration 00:00:00.29
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
0 Hosts
0 Tasks
0 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-cve-key-upload.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 }}"