terraform-provider-mongodb
terraform-provider-mongodb copied to clipboard
Terraform provider for mongodb instance (selfhosted, AWS documentDB and cloud instances )
Hi there. First, thanks for the good work with this provider, It has been very useful. I've noticed that every time I run a terraform plan, it shows a difference...
First of all, thanks for this awesome provider! Unfortunately there's a slight edge case that the provider can't handle well and that's the manual deletion of users from the database(s)...
When looking at the examples: There is an example of setting up the provider on the `admin` db: https://github.com/Kaginari/terraform-provider-mongodb/blob/main/examples/main.tf#L18 but creating users under the `exemple` db https://github.com/Kaginari/terraform-provider-mongodb/blob/main/examples/main.tf#L68 but when trying...
Changes made : - Edit TLS certificate management following MongoDB manual - Replace "certificate" field by "certificate_key_file" and "ca_file" - Update modules and format terraform code - Update documentation
Hello. I have an issue with connection to AWS DocumentDB Terraform version: ``` Terraform v1.1.7 on darwin_amd64 ``` Provider configuration ``` provider "mongodb" { host = "some_server.eu-central-1.docdb.amazonaws.com" port = "27017"...
Hey, thanks for great work here! Found some small problem that make a small mess in my implementation:) provide cert path wtih MONGODB_CERT - is not working for me Some...
AWS RDS DocumentDB (MongoDB-compatible) has introduced IAM authentication, requiring the creation of users in the $external database. According to the specifications, DocumentDB throws an error if a password is provided...