uninstall_ssh_keys.yml 271 B

123456789
  1. ---
  2. - name: Remove the public keys for the user(s)
  3. ec2_key:
  4. state: absent
  5. name: "{{ item.key_name }}"
  6. region: "{{ openshift_aws_region }}"
  7. with_items: "{{ openshift_aws_users }}"
  8. no_log: True
  9. when: openshift_aws_enable_uninstall_shared_objects | bool