Example of single instance with ssd gp2 root volume creation
This commit is contained in:
parent
8a2459c643
commit
bfcdb05597
1 changed files with 16 additions and 0 deletions
|
@ -309,6 +309,22 @@ EXAMPLES = '''
|
||||||
vpc_subnet_id: subnet-29e63245
|
vpc_subnet_id: subnet-29e63245
|
||||||
assign_public_ip: yes
|
assign_public_ip: yes
|
||||||
|
|
||||||
|
# Single instance with ssd gp2 root volume
|
||||||
|
- ec2:
|
||||||
|
key_name: mykey
|
||||||
|
group: webserver
|
||||||
|
instance_type: c3.medium
|
||||||
|
image: ami-123456
|
||||||
|
wait: yes
|
||||||
|
wait_timeout: 500
|
||||||
|
volumes:
|
||||||
|
- device_name: /dev/xvda
|
||||||
|
volume_type: gp2
|
||||||
|
volume_size: 8
|
||||||
|
vpc_subnet_id: subnet-29e63245
|
||||||
|
assign_public_ip: yes
|
||||||
|
exact_count: 1
|
||||||
|
|
||||||
# Multiple groups example
|
# Multiple groups example
|
||||||
- ec2:
|
- ec2:
|
||||||
key_name: mykey
|
key_name: mykey
|
||||||
|
|
Loading…
Reference in a new issue