Merge pull request #118 from johnwards/fix/rds_engine_version

Stop passing engine into EngineVersion
This commit is contained in:
Jack Pearkes 2014-07-30 11:46:46 -04:00
commit 77625c6ca9
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")