Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.44 KB | None | 0 0
  1. ---
  2. - hosts: localhost
  3.   connection: local
  4.   gather_facts: False
  5.  
  6.   tasks:
  7.     - name: Provision a set of instances
  8.       ec2:
  9.          ec2_url: us-west-2
  10.          key_name: cicd
  11.          group: launch-wizard-1
  12.          instance_type: t2.micro
  13.          image: ami-7c803d1c
  14.          wait: true
  15.          exact_count: 5
  16.          count_tag:
  17.             Name: Demo
  18.          instance_tags:
  19.             Name: Demo
  20.       register: ec2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement