main.yml 248 B

12345678
  1. ---
  2. - name: Add the public keys for the users
  3. ec2_key:
  4. name: "{{ item.key_name }}"
  5. key_material: "{{ item.pub_key }}"
  6. region: "{{ r_openshift_aws_ssh_keys_region }}"
  7. with_items: "{{ r_openshift_aws_ssh_keys_users }}"
  8. no_log: True