|
|
|
@ -244,14 +244,14 @@ local_action:
|
|
|
|
|
region: us-east-1
|
|
|
|
|
tasks:
|
|
|
|
|
- name: Launch instance
|
|
|
|
|
local_action: ec2 keypair=$keypair group=$security_group instance_type=$instance_type image=$image wait=true region=$region
|
|
|
|
|
local_action: ec2 keypair={{ keypair }} group={{ security_group }} instance_type={{ instance_type }} image={{ image }} wait=true region={{ region }}
|
|
|
|
|
register: ec2
|
|
|
|
|
- name: Add new instance to host group
|
|
|
|
|
local_action: add_host hostname=${item.public_ip} groupname=launched
|
|
|
|
|
with_items: ${ec2.instances}
|
|
|
|
|
local_action: add_host hostname={{ item.public_ip }} groupname=launched
|
|
|
|
|
with_items: ec2.instances
|
|
|
|
|
- name: Wait for SSH to come up
|
|
|
|
|
local_action: wait_for host=${item.public_dns_name} port=22 delay=60 timeout=320 state=started
|
|
|
|
|
with_items: ${ec2.instances}
|
|
|
|
|
local_action: wait_for host={{ item.public_dns_name }} port=22 delay=60 timeout=320 state=started
|
|
|
|
|
with_items: ec2.instances
|
|
|
|
|
|
|
|
|
|
- name: Configure instance(s)
|
|
|
|
|
hosts: launched
|
|
|
|
|