Hello all!

I'm new to Ansible, but I've already gotten so much done with it! I ran 
into a problem that I can't seem to fix, so I'm posting here to see if this 
is a bug.

Given the simple play:

- hosts: localhost
  connection: local
  gather_facts: no
  tasks:
    - name: Create Launch Configuration
      ec2_lc:
        name: Ansible Launch Configuration
        image_id: ami-1d8c9574
        instance_type: m3.medium
        security_groups: default
        region: us-east-1
        state: present
        volumes:
          - device_name: /dev/sda1
            device_type: standard
            volume_size: 8
            delete_on_termination: True
          - device_name: "/dev/sdb"
            ephemeral: "ephemeral0"


...I would expect to see an EBS store called /dev/sda1 and an ephemeral 
store called /dev/sdb on the Launch Configuration. Instead, I see only the 
EBS store:

<https://lh4.googleusercontent.com/-cvZOnovIoxk/U6bbGh0bQ_I/AAAAAAAABLs/ExYMrcnFgF8/s1600/2014-06-22+at+9.32+AM.png>
Didn't want to file an issue in case I was overlooking something obvious, 
please help!

-- 
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 [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/b99a4150-35be-4c47-8a70-98bd39252a9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to