mirror of https://github.com/ansible/ansible.git
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.
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
6 years ago
|
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
---
|
||
6 years ago
|
- name: test gather vultr ssh key fact - empty resources
|
||
6 years ago
|
vultr_ssh_key_facts:
|
||
6 years ago
|
|
||
6 years ago
|
- name: Upload an ssh key
|
||
6 years ago
|
vultr_ssh_key:
|
||
6 years ago
|
name: '{{ ssh_key_name }}'
|
||
|
ssh_key: '{{ ssh_key_content }}'
|
||
|
|
||
|
- name: test gather vultr ssh key facts in check mode
|
||
6 years ago
|
vultr_ssh_key_facts:
|
||
6 years ago
|
check_mode: yes
|
||
|
|
||
|
- name: verify test gather vultr ssh key facts in check mode
|
||
|
assert:
|
||
|
that:
|
||
|
- ansible_facts.vultr_ssh_key_facts|selectattr('name','equalto','{{ ssh_key_name }}') | list | count == 1
|
||
|
- ansible_facts.vultr_ssh_key_facts|selectattr('ssh_key','equalto','{{ ssh_key_content }}') | list | count == 1
|
||
|
|
||
|
- name: test gather vultr ssh key fact
|
||
6 years ago
|
vultr_ssh_key_facts:
|
||
6 years ago
|
|
||
|
- name: verify test gather vultr ssh key facts
|
||
|
assert:
|
||
|
that:
|
||
|
- ansible_facts.vultr_ssh_key_facts|selectattr('name','equalto','{{ ssh_key_name }}') | list | count == 1
|
||
|
- ansible_facts.vultr_ssh_key_facts|selectattr('ssh_key','equalto','{{ ssh_key_content }}') | list | count == 1
|
||
|
|
||
|
- name: Destroy the ssh key
|
||
6 years ago
|
vultr_ssh_key:
|
||
6 years ago
|
name: ansibletest-sshkey
|
||
|
state: absent
|