-
Notifications
You must be signed in to change notification settings - Fork 16
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
test(terraform): tidy up mysql terraform tests #534
Conversation
We have created an issue in Pivotal Tracker to manage this: https://www.pivotaltracker.com/story/show/183463641 The labels on this github issue will be updated when the story is started. |
|
||
Expect(AfterValuesForType(plan, "aws_db_instance")).To( | ||
MatchKeys(IgnoreExtras, Keys{ | ||
"parameter_group_name": Equal("default.mysql5.7"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
praise: marvellous! I love it!
Expect(AfterValuesForType(plan, "aws_db_instance")).To( | ||
MatchKeys(IgnoreExtras, Keys{ | ||
"storage_type": Equal("io1"), | ||
"iops": Equal(float64(3000)), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
praise: fantastic! better than documentation and much faster to understand
It("should pass the correct window", func() { | ||
Expect(AfterValuesForType(plan, "aws_db_instance")).To( | ||
MatchKeys(IgnoreExtras, Keys{ | ||
"maintenance_window": Equal("mon:01:03-mon:02:04"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thoughts: I wonder how maintenance_day
has been converted to lowercase letters
Checklist:
*[ ] Have you added Release Notes in the docs repositories?