From: Lorin Hochstein Date: Sun, 8 Feb 2015 22:55:01 +0000 (-0500) Subject: switch the order to be consistent with book X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=745fafd87bb73aef97139f205c689aaaef61c240;p=ansiblebook.git switch the order to be consistent with book --- diff --git a/ch12/playbooks/ec2-example.yml b/ch12/playbooks/ec2-example.yml index fbc6345..24996d0 100644 --- a/ch12/playbooks/ec2-example.yml +++ b/ch12/playbooks/ec2-example.yml @@ -4,7 +4,7 @@ vars: region: us-west-1 instance_type: t2.micro - count: 3 + count: 1 tasks: - name: ec2 keypair ec2_key: name=mykey key_material="{{ item }}" region={{ region }} @@ -50,7 +50,7 @@ image: "{{ ubuntu_image.ami }}" instance_type: "{{ instance_type }}" key_name: mykey - group: [outbound, web, ssh] + group: [web, ssh, outbound] instance_tags: { Name: ansiblebook, type: web, env: production } exact_count: "{{ count }}" count_tag: { type: web }