mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
Make sure to send the KmsKeyId when creating an RDS cluster
This commit is contained in:
parent
91d28aec9f
commit
11330138dc
1 changed files with 2 additions and 1 deletions
|
@ -131,8 +131,8 @@ module Fog
|
|||
'DBSubnetGroupName' => db_subnet_group_name,
|
||||
'Engine' => engine,
|
||||
'EngineVersion' => engine_version,
|
||||
'StorageEncrypted' => storage_encrypted,
|
||||
'Iops' => iops,
|
||||
'KmsKeyId' => kms_key_id,
|
||||
'LicenseModel' => license_model,
|
||||
'MasterUserPassword' => password || attributes['MasterUserPassword'],
|
||||
'MasterUsername' => master_username,
|
||||
|
@ -141,6 +141,7 @@ module Fog
|
|||
'PreferredBackupWindow' => preferred_backup_window,
|
||||
'PreferredMaintenanceWindow' => preferred_maintenance_window,
|
||||
'PubliclyAccessible' => publicly_accessible,
|
||||
'StorageEncrypted' => storage_encrypted,
|
||||
'StorageType' => storage_type,
|
||||
'VpcSecurityGroups' => vpc_security_groups,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue