community.general/test/legacy/roles/test_digital_ocean/tasks/sshkey.yml

26 lines
556 B
YAML
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

---
- name: Create ssh key
digital_ocean_sshkey:
name: test-key1
ssh_pub_key: "{{ dummy_ssh_pub_key }}"
oauth_token: "{{ digitalocean_oauth_token }}"
register: result
- name: Verify that SSH key was created
assert:
that:
- "result.changed"
- name: "Delete ssh key"
digital_ocean_sshkey:
state: "absent"
fingerprint: "{{ result.data.ssh_key.fingerprint }}"
oauth_token: "{{ digitalocean_oauth_token }}"
register: result
- name: Verify that SSH key was deleted
assert:
that:
- "result.changed"