launch.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. vars:
  7. inst_names: "{{ oo_new_inst_names }}"
  8. machine_type: n1-standard-1
  9. image: libra-rhel7
  10. vars_files:
  11. - vars.yml
  12. tasks:
  13. - name: Launch instances
  14. gce:
  15. instance_names: "{{ inst_names }}"
  16. machine_type: "{{ machine_type }}"
  17. image: "{{ image }}"
  18. service_account_email: "{{ gce_service_account_email }}"
  19. pem_file: "{{ gce_pem_file }}"
  20. project_id: "{{ gce_project_id }}"
  21. tags: "{{ oo_new_inst_tags }}"
  22. register: gce
  23. - name: Add new instances public IPs to oo_hosts_to_config
  24. add_host: "hostname={{ item.name }} ansible_ssh_host={{ item.public_ip }} groupname=oo_hosts_to_config"
  25. with_items: gce.instance_data
  26. - name: Wait for ssh
  27. wait_for: "port=22 host={{ item.public_ip }}"
  28. with_items: gce.instance_data
  29. - debug: var=gce
  30. # Apply the configs, seprate so that just the configs can be run by themselves
  31. - include: config.yml