From 745fafd87bb73aef97139f205c689aaaef61c240 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Sun, 8 Feb 2015 17:55:01 -0500 Subject: [PATCH] switch the order to be consistent with book --- ch12/playbooks/ec2-example.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.44.0