mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-03 10:33:13 +02:00
Increase the default size of the SSH key.
The default SSH key size in 2048. Increasing this to 4096 to match current best practice guidance.
This commit is contained in:
parent
d59d67f0ea
commit
3f4bf565b1
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
- name: Generate the SSH private key
|
- name: Generate the SSH private key
|
||||||
shell: >
|
shell: >
|
||||||
echo -e 'n' |
|
echo -e 'n' |
|
||||||
ssh-keygen -b 2048 -C {{ SSH_keys.comment }}
|
ssh-keygen -b 4096 -C {{ SSH_keys.comment }}
|
||||||
-t rsa -f {{ SSH_keys.private }} -q -N ""
|
-t rsa -f {{ SSH_keys.private }} -q -N ""
|
||||||
args:
|
args:
|
||||||
creates: "{{ SSH_keys.private }}"
|
creates: "{{ SSH_keys.private }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue