provision_ssh_keypair.yml 307 B

123456789101112
  1. ---
  2. - hosts: localhost
  3. connection: local
  4. gather_facts: no
  5. tasks:
  6. - name: create an instance and prepare for ami
  7. import_role:
  8. name: openshift_aws
  9. tasks_from: ssh_keys.yml
  10. vars:
  11. openshift_aws_node_group_type: compute
  12. when: openshift_aws_users | default([]) | length > 0