From 8eedd915cdff96148594f55698bc827135be356d 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. --- lib/ansible/modules/cloud/amazon/cloudformation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/cloudformation.py b/lib/ansible/modules/cloud/amazon/cloudformation.py index 631189bc43c..1c8a9d6aca5 100644 --- a/lib/ansible/modules/cloud/amazon/cloudformation.py +++ b/lib/ansible/modules/cloud/amazon/cloudformation.py @@ -107,7 +107,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"