Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDS engine version ignored #95

Closed
johnwards opened this issue Jul 29, 2014 · 0 comments · Fixed by #118
Closed

RDS engine version ignored #95

johnwards opened this issue Jul 29, 2014 · 0 comments · Fixed by #118
Labels

Comments

@johnwards
Copy link
Contributor

When I setup my RDS instance as below I end up with an instance running MySQL 5.6.x rather than the 5.5.27 I requested. I checked and I can manually create an instance using this MySQL version fine.

resource "aws_db_instance" "default" {
    identifier = "mydb-terraform-rds"
    allocated_storage = 20
    engine = "mysql"
    engine_version = "5.5.27"
    instance_class = "db.m1.small"
    name = "dbname"
    username = "dbuser"
    password = "apassword"
    security_group_names = ["${aws_db_security_group.default.name}"]
    multi_az = true
    backup_retention_period = 7
    backup_window = "03:30-04:30"
    skip_final_snapshot = true
}
@pearkes pearkes added the bug label Jul 29, 2014
johnwards added a commit to johnwards/terraform that referenced this issue Jul 30, 2014
@ghost ghost locked and limited conversation to collaborators May 5, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants