You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
- name: Generate privatekey1 - standard
|
|
|
|
openssh_keypair:
|
|
|
|
path: '{{ output_dir }}/privatekey1'
|
|
|
|
register: privatekey1_result
|
|
|
|
|
|
|
|
- name: Generate privatekey2 - size 2048
|
|
|
|
openssh_keypair:
|
|
|
|
path: '{{ output_dir }}/privatekey2'
|
|
|
|
size: 2048
|
|
|
|
|
|
|
|
- name: Generate privatekey3 - type dsa
|
|
|
|
openssh_keypair:
|
|
|
|
path: '{{ output_dir }}/privatekey3'
|
|
|
|
type: dsa
|
|
|
|
|
|
|
|
- name: Generate privatekey4 - standard
|
|
|
|
openssh_keypair:
|
|
|
|
path: '{{ output_dir }}/privatekey4'
|
|
|
|
|
|
|
|
- name: Delete privatekey4 - standard
|
|
|
|
openssh_keypair:
|
|
|
|
state: absent
|
|
|
|
path: '{{ output_dir }}/privatekey4'
|
|
|
|
|
|
|
|
- name: Generate privatekey5 - standard
|
|
|
|
openssh_keypair:
|
|
|
|
path: '{{ output_dir }}/privatekey5'
|
|
|
|
register: publickey_gen
|
|
|
|
|
|
|
|
- import_tasks: ../tests/validate.yml
|