1
0
Fork 0
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:
Alex Coomans 2015-12-05 17:12:52 -08:00
parent 91d28aec9f
commit 11330138dc

View file

@ -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,
}