mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
Change DBSubnetGroup to DBSubnetGroupName model cluster while creation
This commit is contained in:
parent
0a778831a7
commit
5e4323435e
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ module Fog
|
|||
attribute :backup_retention_period, :aliases => 'BackupRetentionPeriod', :type => :integer
|
||||
attribute :db_cluster_members, :aliases => 'DBClusterMembers', :type => :array
|
||||
attribute :db_cluster_parameter_group, :aliases => 'DBClusterParameterGroup'
|
||||
attribute :db_subnet_group, :aliases => 'DBSubnetGroup'
|
||||
attribute :db_subnet_group, :aliases => 'DBSubnetGroupName'
|
||||
attribute :endpoint, :aliases => 'Endpoint'
|
||||
attribute :engine, :aliases => 'Engine'
|
||||
attribute :engine_version, :aliases => 'EngineVersion'
|
||||
|
@ -72,7 +72,7 @@ module Fog
|
|||
'BackupRetentionPeriod' => backup_retention_period,
|
||||
'DBClusterIdentifier' => identity,
|
||||
'DBClusterParameterGroup' => db_cluster_parameter_group,
|
||||
'DBSubnetGroup' => db_subnet_group,
|
||||
'DBSubnetGroupName' => db_subnet_group,
|
||||
'Endpoint' => endpoint,
|
||||
'Engine' => engine,
|
||||
'EngineVersion' => engine_version,
|
||||
|
|
Loading…
Reference in a new issue