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:
commit
74e7efdae3
1 changed files with 2 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue