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

Handle MongoDB 4.2 in DDS resource #930

Closed
Karreg opened this issue Mar 10, 2023 · 0 comments · Fixed by #937
Closed

Handle MongoDB 4.2 in DDS resource #930

Karreg opened this issue Mar 10, 2023 · 0 comments · Fixed by #937
Milestone

Comments

@Karreg
Copy link
Contributor

Karreg commented Mar 10, 2023

For now, MongoDB 4.2 is not supported by the provider.
I see at least two changes:

  • Allow MongoDB 4.2 version
  • Allow RocksDB as storage engine

"version": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{
"4.0", "3.4",
}, true),
},
"storage_engine": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{
"wiredTiger",
}, true),

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants