summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2015-03-31 09:09:43 -0400
committerBrian Coca <brian.coca+git@gmail.com>2015-03-31 09:09:43 -0400
commit99391f861d94f7d0523dbf962819a891ad0e3d06 (patch)
tree0b4dc924798f38acb97a6e55c92bb88316e331b4
parentbdef699596d48a9fd5bb5dad040c9b5e0765bbf6 (diff)
downloadansible-modules-core-99391f861d94f7d0523dbf962819a891ad0e3d06.tar.gz
fixed doc issues on cloudformation
-rw-r--r--cloud/amazon/cloudformation.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/cloud/amazon/cloudformation.py b/cloud/amazon/cloudformation.py
index b25d7652..5852c5b2 100644
--- a/cloud/amazon/cloudformation.py
+++ b/cloud/amazon/cloudformation.py
@@ -78,7 +78,7 @@ options:
version_added: "1.5"
template_url:
description:
- - Location of file containing the template body. The URL must point to a template (max size: 307,200 bytes) located in an S3 bucket in the same region as the stack. This parameter is mutually exclusive with 'template'. Either one of them is required if "state" parameter is "present"
+ - 'Location of file containing the template body. The URL must point to a template (max size: 307,200 bytes) located in an S3 bucket in the same region as the stack. This parameter is mutually exclusive with 'template'. Either one of them is required if "state" parameter is "present"'
required: false
version_added: "2.0"
@@ -88,7 +88,6 @@ extends_documentation_fragment: aws
EXAMPLES = '''
# Basic task example
-tasks:
- name: launch ansible cloudformation example
cloudformation:
stack_name: "ansible-cloudformation"
@@ -105,13 +104,12 @@ tasks:
Stack: "ansible-cloudformation"
# Removal example
-tasks:
- name: tear down old deployment
cloudformation:
stack_name: "ansible-cloudformation-old"
state: "absent"
+
# Use a template from a URL
-tasks:
- name: launch ansible cloudformation example
cloudformation:
stack_name="ansible-cloudformation" state=present