Skip to content

Instantly share code, notes, and snippets.

@lorin
Forked from anonymous/gist:df54b9bcec40462ce205
Created November 24, 2014 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lorin/53ee700a2fdbeabdd5b0 to your computer and use it in GitHub Desktop.
Save lorin/53ee700a2fdbeabdd5b0 to your computer and use it in GitHub Desktop.
- hosts: localhost
gather_facts: false
tasks:
- local_action:
module: ec2
key_name: key
instance_type: r3.2xlarge
region: us-east-1
image: ami-xxxxxxx
group: somegroup
count: 1
instance_tags:
Name: "{{ item }}"
with_items:
- "foo"
- "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment