mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 23:25:28 +01:00
authorized_key: Add support for additional key types
Fixes: #134 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
1f15216d0d
commit
c985096af5
2 changed files with 17 additions and 0 deletions
2
changelogs/fragments/134_authorized_key.yml
Normal file
2
changelogs/fragments/134_authorized_key.yml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- authorized_key - add a list of valid key types (https://github.com/ansible-collections/ansible.posix/issues/134).
|
||||||
|
|
@ -389,13 +389,28 @@ def parsekey(module, raw_key, rank=None):
|
||||||
|
|
||||||
VALID_SSH2_KEY_TYPES = [
|
VALID_SSH2_KEY_TYPES = [
|
||||||
'sk-ecdsa-sha2-nistp256@openssh.com',
|
'sk-ecdsa-sha2-nistp256@openssh.com',
|
||||||
|
'sk-ecdsa-sha2-nistp256-cert-v01@openssh.com',
|
||||||
|
'webauthn-sk-ecdsa-sha2-nistp256@openssh.com',
|
||||||
'ecdsa-sha2-nistp256',
|
'ecdsa-sha2-nistp256',
|
||||||
|
'ecdsa-sha2-nistp256-cert-v01@openssh.com',
|
||||||
'ecdsa-sha2-nistp384',
|
'ecdsa-sha2-nistp384',
|
||||||
|
'ecdsa-sha2-nistp384-cert-v01@openssh.com',
|
||||||
'ecdsa-sha2-nistp521',
|
'ecdsa-sha2-nistp521',
|
||||||
|
'ecdsa-sha2-nistp521-cert-v01@openssh.com',
|
||||||
'sk-ssh-ed25519@openssh.com',
|
'sk-ssh-ed25519@openssh.com',
|
||||||
|
'sk-ssh-ed25519-cert-v01@openssh.com',
|
||||||
'ssh-ed25519',
|
'ssh-ed25519',
|
||||||
|
'ssh-ed25519-cert-v01@openssh.com',
|
||||||
'ssh-dss',
|
'ssh-dss',
|
||||||
'ssh-rsa',
|
'ssh-rsa',
|
||||||
|
'ssh-xmss@openssh.com',
|
||||||
|
'ssh-xmss-cert-v01@openssh.com',
|
||||||
|
'rsa-sha2-256',
|
||||||
|
'rsa-sha2-512',
|
||||||
|
'ssh-rsa-cert-v01@openssh.com',
|
||||||
|
'rsa-sha2-256-cert-v01@openssh.com',
|
||||||
|
'rsa-sha2-512-cert-v01@openssh.com',
|
||||||
|
'ssh-dss-cert-v01@openssh.com',
|
||||||
]
|
]
|
||||||
|
|
||||||
options = None # connection options
|
options = None # connection options
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue