0
0
Ansible role for SSH Key Rotation
Go to file
2023-11-07 21:39:17 +08:00
defaults Modified the role + Updated the LICENSE 2023-11-07 21:39:17 +08:00
tasks Modified the role + Updated the LICENSE 2023-11-07 21:39:17 +08:00
LICENSE Modified the role + Updated the LICENSE 2023-11-07 21:39:17 +08:00
README.md Modified the role + Updated the LICENSE 2023-11-07 21:39:17 +08:00

SSH Key Rotation

This is Ansible role that enables you to rotate ssh keys on your remote servers. Forked from nyambati/ssh-key-rotation. By default, this role generates an ed25519 key pair with the Ansible group and the current date as its name.

Example Playbook

---
- name: SSH Keys Rotation
  hosts: all
  remote_user: user
  vars:
    is_exclusive: no
    ssh_host_user: user
  vars_prompt:
    - name: passphrase
      prompt: "Enter the passphrase"
      private: true
    - name: confirm_passphrase
      prompt: "Confirm the passphrase"
      private: true
  roles:
    - ssh-key-rotation

Original Author

Thomas Nyambati thomasnyambati@gmail.com