fixed doc issues on cloudformation
This commit is contained in:
parent
9fd568f655
commit
2dafff3f97
1 changed files with 2 additions and 4 deletions
|
@ -78,7 +78,7 @@ options:
|
||||||
version_added: "1.5"
|
version_added: "1.5"
|
||||||
template_url:
|
template_url:
|
||||||
description:
|
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
|
required: false
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
|
|
||||||
|
@ -88,7 +88,6 @@ extends_documentation_fragment: aws
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Basic task example
|
# Basic task example
|
||||||
tasks:
|
|
||||||
- name: launch ansible cloudformation example
|
- name: launch ansible cloudformation example
|
||||||
cloudformation:
|
cloudformation:
|
||||||
stack_name: "ansible-cloudformation"
|
stack_name: "ansible-cloudformation"
|
||||||
|
@ -105,13 +104,12 @@ tasks:
|
||||||
Stack: "ansible-cloudformation"
|
Stack: "ansible-cloudformation"
|
||||||
|
|
||||||
# Removal example
|
# Removal example
|
||||||
tasks:
|
|
||||||
- name: tear down old deployment
|
- name: tear down old deployment
|
||||||
cloudformation:
|
cloudformation:
|
||||||
stack_name: "ansible-cloudformation-old"
|
stack_name: "ansible-cloudformation-old"
|
||||||
state: "absent"
|
state: "absent"
|
||||||
|
|
||||||
# Use a template from a URL
|
# Use a template from a URL
|
||||||
tasks:
|
|
||||||
- name: launch ansible cloudformation example
|
- name: launch ansible cloudformation example
|
||||||
cloudformation:
|
cloudformation:
|
||||||
stack_name="ansible-cloudformation" state=present
|
stack_name="ansible-cloudformation" state=present
|
||||||
|
|
Loading…
Reference in a new issue