1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[AWS|Autoscale] Fixing Parameters notes for autoscale create launch

configuration for InstanceMonitoring.  Credit goes to boto,
https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py
, for having it correct.
This commit is contained in:
Zuhaib M Siddique 2012-05-29 19:18:26 -07:00
parent e0a0412e19
commit 56dd09c6f0

View file

@ -23,7 +23,7 @@ module Fog
# * 'Ebs.VolumeSize'<~Integer> - The volume size, in GigaBytes.
# * 'VirtualName'<~String> - The virtual name associated with the
# device.
# * 'InstanceMonitoring.Enabled'<~Boolean> - Enable/Disable detailed monitoring, default is enabled:
# * 'InstanceMonitoring.Enabled'<~Boolean> - Enable/Disable detailed monitoring, default is enabled
# * 'KernelId'<~String> - The ID of the kernel associated with the
# EC2 AMI.
# * 'KeyName'<~String> - The name of the EC2 key pair.
@ -78,7 +78,7 @@ module Fog
'BlockDeviceMappings' => [],
'CreatedTime' => Time.now.utc,
'ImageId' => image_id,
'InstanceMonitoring' => { 'Enabled' => true },
'InstanceMonitoring.Enabled' => true
'InstanceType' => instance_type,
'KernelId' => nil,
'KeyName' => nil,