Misc EC2 doc tweaks.

This commit is contained in:
Michael DeHaan
2014-12-01 14:46:07 -05:00
committed by Matt Clay
parent ddc81c7b93
commit 590d20db24
2 changed files with 70 additions and 75 deletions

View File

@@ -20,7 +20,6 @@ module: cloudformation
short_description: create a AWS CloudFormation stack
description:
- Launches an AWS CloudFormation stack and waits for it complete.
version_added: "1.1"
options:
stack_name:
description:
@@ -98,17 +97,17 @@ EXAMPLES = '''
tasks:
- name: launch ansible cloudformation example
cloudformation:
stack_name="ansible-cloudformation" state=present
region=us-east-1 disable_rollback=true
template=files/cloudformation-example.json
args:
stack_name: "ansible-cloudformation"
state: "present"
region: "us-east-1 disable_rollback=true"
template: "files/cloudformation-example.json"
template_parameters:
KeyName: jmartin
DiskType: ephemeral
InstanceType: m1.small
KeyName: "jmartin"
DiskType: "ephemeral"
InstanceType: "m1.small"
ClusterSize: 3
tags:
Stack: ansible-cloudformation
Stack: "ansible-cloudformation"
'''
import json