- name: Launch an Ubuntu 14.04 EC2 instance hosts: localhost connection: local gather_facts: no tasks: - name: Find the latest Ubuntu AMI ec2_ami_search: distro=ubuntu release=trusty region=ap-southeast-1 store=ebs-ssd virt=hvm register: ubuntu_image - name: Start the new EC2 instance ec2: image: "{{ ubuntu_image.ami }}" region: ap-southeast-1 zone: ap-southeast-1b instance_type: t2.small vpc_subnet_id: xxxxxxxxxxxxxxxx group_id: ['sg-xxxxxxxx', 'sg-xxxxxxx'] key_name: random_key wait: yes wait_timeout: 500 register: ec2 - name: Add the new instance to host group add_host: hostname={{ item.private_ip }} groupname=launched with_items: ec2.instances - name: Wait for SSH to come up on the new instance wait_for: host={{ item.private_ip }} port=22 delay=60 timeout=320 state=started with_items: ec2.instances- name: Create an AMI from the provisioned instance hosts: localhost connection: local gather_facts: no tasks: - ec2_ami: region=ap-southeast-1 instance_id={{ item.id }} wait=no name=basebox-2000000 with_items: - ec2.instances
- name: Delete the instance now that the AMI is created hosts: localhost connection: local gather_facts: no tasks: - ec2: region: ap-southeast-1 instance_ids: "{{ item.id }}" state: 'absent' with_items: - ec2.instancesTASK: [ec2_ami region=ap-southeast-1 instance_id={{ item.id }} wait=no name=basebox-2000000] ***fatal: [localhost] => One or more undefined variables: 'str object' has no attribute 'id'--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/cc359c02-afd3-4c71-931d-7c5db8fde6a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "Ansible Project" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ansible-project/VkA8f77Pn9E/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAMFyvFip1qw%2B_bFSB2YrOqHoMYPwEL%2B4%2Bgckj18Y_CnWkE3J5g%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/910c13a9-bb28-4ba7-8ebb-4a3638bc457c%40googlegroups.com.