Stop passing engine into EngineVersion

Fixes #95
This commit is contained in:
John Wards 2014-07-30 16:44:02 +01:00
parent efc6f7b987
commit 7493ee31cb
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func resource_aws_db_instance_create(
opts.MasterUsername = rs.Attributes["username"]
opts.MasterUserPassword = rs.Attributes["password"]
opts.EngineVersion = rs.Attributes["engine_version"]
opts.EngineVersion = rs.Attributes["engine"]
opts.Engine = rs.Attributes["engine"]
// Don't keep the password around in the state
delete(rs.Attributes, "password")