summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws_ssh_keys/tasks/main.yml
blob: 232cf20edcebede91c135cbe9f807ee6e76b2386 (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: "{{ r_openshift_aws_ssh_keys_region }}"
  with_items: "{{ r_openshift_aws_ssh_keys_users }}"
  no_log: True