Use correct kwarg when creating database

This commit is contained in:
Yoriyasu Yano 2015-10-20 09:12:59 -07:00
commit f0cc561aa7
2 changed files with 3 additions and 3 deletions

View file

@ -135,7 +135,7 @@ class Database(object):
"engine": properties.get("Engine"),
"engine_version": properties.get("EngineVersion"),
"iops": properties.get("Iops"),
"master_password": properties.get('MasterUserPassword'),
"master_user_password": properties.get('MasterUserPassword'),
"master_username": properties.get('MasterUsername'),
"multi_az": properties.get("MultiAZ"),
"port": properties.get('Port', 3306),