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:
parent
e0a0412e19
commit
56dd09c6f0
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue