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

Merge pull request #942 from OxygenCloud/master

[AWS|Autoscale] Fixing Parameters notes for autoscale create_launch_configuration for InstanceMonitoring.
This commit is contained in:
Wesley Beary 2012-05-30 09:12:48 -07:00
commit 74e7efdae3

View file

@ -23,8 +23,7 @@ module Fog
# * 'Ebs.VolumeSize'<~Integer> - The volume size, in GigaBytes.
# * 'VirtualName'<~String> - The virtual name associated with the
# device.
# * 'InstanceMonitoring'<~Hash>:
# * 'Enabled'<~Boolean> - Enabled detailed monitoring.
# * '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.
@ -79,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,