From 369eeb2666dacf4101db121c7ffb69950a7d3269 Mon Sep 17 00:00:00 2001 From: Jeff Gonzalez Date: Mon, 15 Dec 2014 10:18:31 -0600 Subject: [PATCH] Fixed formatting in documentation The example was using mixed shorthand and long form yaml (region: "us-east-1 disable_rollback=true" I modified the entire example to be long form. --- cloud/amazon/cloudformation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud/amazon/cloudformation.py b/cloud/amazon/cloudformation.py index 72b970cd262..ff4a66373c0 100644 --- a/cloud/amazon/cloudformation.py +++ b/cloud/amazon/cloudformation.py @@ -100,7 +100,8 @@ tasks: cloudformation: stack_name: "ansible-cloudformation" state: "present" - region: "us-east-1 disable_rollback=true" + region: "us-east-1" + disable_rollback: true template: "files/cloudformation-example.json" template_parameters: KeyName: "jmartin"