launch.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars:
  8. inst_region: us-east-1
  9. rhel7_ami: ami-9101c8fa
  10. user_data_file: user_data.txt
  11. vars_files:
  12. - vars.yml
  13. - "vars.{{ oo_env }}.yml"
  14. tasks:
  15. - name: Launch instances in VPC
  16. ec2:
  17. state: present
  18. region: "{{ inst_region }}"
  19. keypair: mmcgrath_libra
  20. group_id: "{{ oo_security_group_ids }}"
  21. instance_type: c4.xlarge
  22. image: "{{ rhel7_ami }}"
  23. count: "{{ oo_new_inst_names | length }}"
  24. user_data: "{{ lookup('file', user_data_file) }}"
  25. wait: yes
  26. assign_public_ip: "{{ oo_assign_public_ip }}"
  27. vpc_subnet_id: "{{ oo_vpc_subnet_id }}"
  28. register: ec2
  29. - name: Add Name and environment tags to instances
  30. ec2_tag: "resource={{ item.1.id }} region={{ inst_region }} state=present"
  31. with_together:
  32. - oo_new_inst_names
  33. - ec2.instances
  34. args:
  35. tags:
  36. Name: "{{ item.0 }}"
  37. - name: Add other tags to instances
  38. ec2_tag: "resource={{ item.id }} region={{ inst_region }} state=present"
  39. with_items: ec2.instances
  40. args:
  41. tags: "{{ oo_new_inst_tags }}"
  42. - name: Add new instances public IPs to oo_hosts_to_config
  43. add_host: "hostname={{ item.0 }} ansible_ssh_host={{ item.1.public_ip }} groupname=oo_hosts_to_config"
  44. with_together:
  45. - oo_new_inst_names
  46. - ec2.instances
  47. - debug: var=ec2
  48. - name: Wait for ssh
  49. wait_for: "port=22 host={{ item.public_ip }}"
  50. with_items: ec2.instances
  51. - name: Wait for root user setup
  52. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.public_ip }} echo root user is setup"
  53. register: result
  54. until: result.rc == 0
  55. retries: 20
  56. delay: 10
  57. with_items: ec2.instances
  58. - name: Initial setup
  59. hosts: oo_hosts_to_config
  60. user: root
  61. gather_facts: true
  62. tasks:
  63. - name: Yum update
  64. yum: name=* state=latest
  65. # Apply the configs, seprate so that just the configs can be run by themselves
  66. - include: config.yml