-
Notifications
You must be signed in to change notification settings - Fork 172
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
[Bug]: <Root object was present, but now absent.> #2345
Comments
Thanks for opening this issue! Please make sure you've followed our guidelines when opening the issue. In short, to help us reproduce the issue we need:
The ticket CLOUDP-254199 was created for internal tracking. |
This issue has gone 7 days without any activity and meets the project’s definition of "stale". This will be auto-closed if there is no new activity over the next 7 days. If the issue is still relevant and active, you can simply comment with a "bump" to keep it open, or add the label "not_stale". Thanks for keeping our repository healthy! |
Hi @priyanshur-curefit Unfortunately I was not able to reproduce this issue. I used below configuration and I was able to successfully deploy everything. resource "mongodbatlas_cluster" "my_cluster" {
project_id = mongodbatlas_project.atlas-project.id
name = "test"
provider_name = "AWS"
provider_region_name = "US_WEST_2"
provider_instance_size_name = "M10"
cloud_backup = true // enable cloud provider snapshots
}
resource "mongodbatlas_cloud_backup_snapshot" "test" {
project_id = mongodbatlas_cluster.my_cluster.project_id
cluster_name = mongodbatlas_cluster.my_cluster.name
description = "tmp"
retention_in_days = 1
}
resource "mongodbatlas_cloud_backup_snapshot_restore_job" "test" {
project_id = mongodbatlas_cloud_backup_snapshot.test.project_id
cluster_name = mongodbatlas_cloud_backup_snapshot.test.cluster_name
snapshot_id = mongodbatlas_cloud_backup_snapshot.test.id
depends_on = [
mongodbatlas_cluster.my_cluster
]
delivery_type_config {
automated = true
target_cluster_name = mongodbatlas_cluster.my_cluster.name
target_project_id = mongodbatlas_project.atlas-project.id
}
} If you are still running into this issue, I'd request you to please share complete configuration and ensure following one-click reproducible issues principle. Thank you! |
here u can see i am trying to restore an already available snapshot of another cluster to a new cluster. I am not using |
I see, in that case are you sure |
Is there an existing issue for this?
Provider Version
v1.17.0
Terraform Version
v1.8.4
Terraform Edition
Terraform Open Source (OSS)
Current Behavior
I am getting the following error while running
mongodbatlas_cloud_backup_snapshot_restore_job
:Steps To Reproduce
mongodbatlas_cluster
mongodbatlas_cloud_backup_snapshot_restore_job
using the snapshot_id from another clusterLogs
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: