blob: ec9caa51b1612ee675655bef0a64ae0936f429e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- hosts: localhost
connection: local
gather_facts: no
tasks:
- name: remove ssh keypair(s)
include_role:
name: openshift_aws
tasks_from: uninstall_ssh_keys.yml
when: openshift_aws_users | default([]) | length > 0
|