Skip to content

Commit

Permalink
Merge pull request #206 from drcapulet/alexc-fix-kms
Browse files Browse the repository at this point in the history
Make sure to send the KmsKeyId when creating an RDS cluster
  • Loading branch information
geemus committed Dec 9, 2015
2 parents 91d28ae + 1133013 commit de90f98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/fog/aws/models/rds/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ def attributes_to_params
'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,
Expand All @@ -141,6 +141,7 @@ def attributes_to_params
'PreferredBackupWindow' => preferred_backup_window,
'PreferredMaintenanceWindow' => preferred_maintenance_window,
'PubliclyAccessible' => publicly_accessible,
'StorageEncrypted' => storage_encrypted,
'StorageType' => storage_type,
'VpcSecurityGroups' => vpc_security_groups,
}
Expand Down

0 comments on commit de90f98

Please sign in to comment.