Mongodb – Restoring a AWS documentdb snapshot with terraform
I am unsure how to restore an AWS documentdb cluster that is managed by terraform. My terraform setup looks like this: resource "aws_docdb_cluster" "this" { cluster_identifier = var.env_name engine = "docdb" engine_version = "4.0.0" master_username = "USERNAME" master_password = random_password.this.result…