Starting an EC2 instance based off of an AMI returned from the ec2_ami_search module. I’m trying to use an EBS SSD backed instance. The documentation shows ebs, ebs-io1, ebs-ssd, and instance-store as options.
A fragment of my playbook:
- name: get the latest Ubuntu 14.04 AMI
ec2_ami_search: distro=ubuntu
release=trusty
store=ebs-ssd
arch=amd64
virt=hvm
register: ubuntu_image
This returns:
failed: [localhost] => {“failed”: true}
msg: value of store must be one of: ebs,instance-store, got: ebs-ssd
What am I doing wrong here? Thanks in advance.