From 2744fde7c99d8550fb5757cf7733eaa0f761cc86 Mon Sep 17 00:00:00 2001 From: "Ryan S. Brown" Date: Wed, 9 Nov 2016 12:37:13 -0500 Subject: [PATCH] Fix link in `cloudformation` module docs --- lib/ansible/modules/cloud/amazon/cloudformation.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/cloudformation.py b/lib/ansible/modules/cloud/amazon/cloudformation.py index 107a3301b8c..af7617c7db3 100644 --- a/lib/ansible/modules/cloud/amazon/cloudformation.py +++ b/lib/ansible/modules/cloud/amazon/cloudformation.py @@ -98,7 +98,7 @@ options: version_added: "2.0" role_arn: description: - - The role that AWS CloudFormation assumes to create the stack. [AWS CloudFormation Service Role](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-servicerole.html) + - The role that AWS CloudFormation assumes to create the stack. See the AWS CloudFormation Service Role docs U(http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-servicerole.html) required: false default: null version_added: "2.3" @@ -456,8 +456,6 @@ def main(): result = dict(changed=False, output='Stack is already up-to-date.') else: module.fail_json(msg=error_msg) - #return {'error': error_msg} - #module.fail_json(msg=error_msg) if not result: module.fail_json(msg="empty result") # check the status of the stack while we are creating/updating it.