mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Misc EC2 doc tweaks.
This commit is contained in:
committed by
Matt Clay
parent
ddc81c7b93
commit
590d20db24
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user