summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/ssh_keys.yml
blob: f439ce74e19976c9c08dbafe14e22e598a8ec53a (plain)
1
2
3
4
5
6
7
8
---
- name: Add the public keys for the users
  ec2_key:
    name: "{{ item.key_name }}"
    key_material: "{{ item.pub_key }}"
    region: "{{ openshift_aws_region }}"
  with_items: "{{ openshift_aws_users }}"
  no_log: True