accept.yml 585 B

12345678910111213141516171819202122
  1. #!/usr/bin/ansible-playbook
  2. ---
  3. - name: Accept nodes
  4. hosts: localhost
  5. gather_facts: no
  6. tasks:
  7. - name: Alert user to variables needed - clusterid
  8. debug:
  9. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
  10. - name: Alert user to variables needed - region
  11. debug:
  12. msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
  13. - name: bring lib_openshift into scope
  14. import_role:
  15. name: lib_openshift
  16. - name: accept nodes
  17. import_role:
  18. name: openshift_aws
  19. tasks_from: accept_nodes.yml