Skip to content

Commit

Permalink
Merge pull request #118 from johnwards/fix/rds_engine_version
Browse files Browse the repository at this point in the history
Stop passing engine into EngineVersion
  • Loading branch information
pearkes committed Jul 30, 2014
2 parents efc6f7b + 7493ee3 commit 77625c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_db_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 77625c6

Please sign in to comment.