mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws|rds] Parse DBName attribute.
The default parser was ignoring the DBName attribute. The db_name attribute was always nil in the RDS server model. This patch fixes that.
This commit is contained in:
parent
8f57a87e38
commit
0f0058ed52
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ module Fog
|
|||
when 'Engine',
|
||||
'DBInstanceStatus', 'DBInstanceIdentifier', 'EngineVersion',
|
||||
'PreferredBackupWindow', 'PreferredMaintenanceWindow',
|
||||
'AvailabilityZone', 'MasterUsername'
|
||||
'AvailabilityZone', 'MasterUsername', 'DBName'
|
||||
@db_instance[name] = @value
|
||||
when 'MultiAZ', 'AutoMinorVersionUpgrade'
|
||||
if @value == 'false'
|
||||
|
|
Loading…
Reference in a new issue