summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/uninstall_ssh_keys.yml
blob: 27e42da5336a31ea0f4004bba3ea36361cc6ae4a (plain)
1
2
3
4
5
6
7
8
9
---
- name: Remove the public keys for the user(s)
  ec2_key:
    state: absent
    name: "{{ item.key_name }}"
    region: "{{ openshift_aws_region }}"
  with_items: "{{ openshift_aws_users }}"
  no_log: True
  when: openshift_aws_enable_uninstall_shared_objects | bool