launch.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. vars:
  7. inst_region: us-east-1
  8. atomic_ami: ami-8e239fe6
  9. user_data_file: user_data.txt
  10. oo_vpc_subnet_id: # Purposely left blank, these are here to be overridden in env vars_files
  11. oo_assign_public_ip: # Purposely left blank, these are here to be overridden in env vars_files
  12. vars_files:
  13. - vars.yml
  14. - "vars.{{ oo_env }}.yml"
  15. tasks:
  16. - name: Launch instances in VPC
  17. ec2:
  18. state: present
  19. region: "{{ inst_region }}"
  20. keypair: mmcgrath_libra
  21. group_id: "{{ oo_security_group_ids }}"
  22. instance_type: m3.large
  23. image: "{{ atomic_ami }}"
  24. count: "{{ oo_new_inst_names | oo_len }}"
  25. user_data: "{{ lookup('file', user_data_file) }}"
  26. wait: yes
  27. assign_public_ip: "{{ oo_assign_public_ip }}"
  28. vpc_subnet_id: "{{ oo_vpc_subnet_id }}"
  29. when: oo_vpc_subnet_id
  30. register: ec2_vpc
  31. - set_fact:
  32. ec2: "{{ ec2_vpc }}"
  33. when: oo_vpc_subnet_id
  34. - name: Launch instances in Classic
  35. ec2:
  36. state: present
  37. region: "{{ inst_region }}"
  38. keypair: mmcgrath_libra
  39. group: ['Libra', '{{ oo_env }}', '{{ oo_env }}_proxy', '{{ oo_env }}_proxy_atomic']
  40. instance_type: m3.large
  41. image: "{{ atomic_ami }}"
  42. count: "{{ oo_new_inst_names | oo_len }}"
  43. user_data: "{{ lookup('file', user_data_file) }}"
  44. wait: yes
  45. when: not oo_vpc_subnet_id
  46. register: ec2_classic
  47. - set_fact:
  48. ec2: "{{ ec2_classic }}"
  49. when: not oo_vpc_subnet_id
  50. - name: Add new instances public IPs to the atomic proxy host group
  51. add_host: "hostname={{ item.public_ip }} groupname=new_ec2_instances"
  52. with_items: ec2.instances
  53. - name: Add Name and environment tags to instances
  54. ec2_tag: "resource={{ item.1.id }} region={{ inst_region }} state=present"
  55. with_together:
  56. - oo_new_inst_names
  57. - ec2.instances
  58. args:
  59. tags:
  60. Name: "{{ item.0 }}"
  61. - name: Add other tags to instances
  62. ec2_tag: "resource={{ item.id }} region={{ inst_region }} state=present"
  63. with_items: ec2.instances
  64. args:
  65. tags: "{{ oo_new_inst_tags }}"
  66. - name: Add new instances public IPs to oo_hosts_to_config
  67. add_host: "hostname={{ item.0 }} ansible_ssh_host={{ item.1.public_ip }} groupname=oo_hosts_to_config"
  68. with_together:
  69. - oo_new_inst_names
  70. - ec2.instances
  71. - debug: var=ec2
  72. - name: Wait for ssh
  73. wait_for: "port=22 host={{ item.public_ip }}"
  74. with_items: ec2.instances
  75. - name: Wait for root user setup
  76. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.public_ip }} echo root user is setup"
  77. register: result
  78. until: result.rc == 0
  79. retries: 20
  80. delay: 10
  81. with_items: ec2.instances
  82. # Apply the configs, seprate so that just the configs can be run by themselves
  83. - include: config.yml