Skip to content

[Bug]: imported project has a wrong configuration and unusable #3103

@VladimirUsov

Description

@VladimirUsov

Is there an existing issue for this?

  • I have searched the existing issues

Provider Version

1.27.0

Terraform Version

1.10.5

Terraform Edition

Terraform Open Source (OSS)

Current Behavior

Importing an existing Atlas project works but results in the wrong attribute value ("with_default_alerts_settings": null), which in turn leads to the inability to use the imported configuration—it just times out during a Terraform apply. Manually editing the state file and correcting the attribute value results in no errors when applying the configuration. Tested with several different provider versions, specifying the latest for the bug report.

Terraform configuration to reproduce the issue

resource "mongodbatlas_project" "project" {
  name                          = "testAtlasImport"
  org_id                        = var.org_id
  with_default_alerts_settings  = true
}

Steps To Reproduce

  1. Create a Mongo Atlas project via the provided Terraform template. (it actually does not matter if you provide the attribute with_default_alerts_settings or not)
  2. Rename/move away your current terraform state file
  3. Import project by running: terraform import mongodbatlas_project.project "${project_id}"
  4. Run terraform plan - it will show you that the with_default_alerts_settings is going to be changed even though it's the same.
  5. Run terraform apply - this will just halt and timeout after 40m+

Optional (workaround):
6. Manually edit the state file created during the import. Change the "with_default_alerts_settings": null to "with_default_alerts_settings": true
7. Re-apply terraform - this time it would run successfully and report that configuration is matching.

Expectation: the attribute would receive its proper value during the state during the import "with_default_alerts_settings": true and NOT "with_default_alerts_settings": null, and so applying the project after importing wouldn't fail.

Logs

PS C:\RESEARCH\Atlas\terraform-mongodbatlas-atlas-basic\mini> terraform apply

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # mongodbatlas_project.project will be created
  + resource "mongodbatlas_project" "project" {
      + cluster_count                                    = (known after apply)
      + created                                          = (known after apply)
      + id                                               = (known after apply)
      + ip_addresses                                     = (known after apply)
      + is_collect_database_specifics_statistics_enabled = (known after apply)
      + is_data_explorer_enabled                         = (known after apply)
      + is_extended_storage_sizes_enabled                = (known after apply)
      + is_performance_advisor_enabled                   = (known after apply)
      + is_realtime_performance_panel_enabled            = (known after apply)
      + is_schema_advisor_enabled                        = (known after apply)
      + is_slow_operation_thresholding_enabled           = (known after apply)
      + name                                             = "testAtlasImport"
      + org_id                                           = "6793c3f3e7099c7d2e929982"
      + region_usage_restrictions                        = (known after apply)
      + with_default_alerts_settings                     = true
    }

Plan: 1 to add, 0 to change, 0 to destroy.

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

mongodbatlas_project.project: Creating...
mongodbatlas_project.project: Creation complete after 5s [id=67bcd55dcf916732907efc58]

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
PS C:\RESEARCH\Atlas\terraform-mongodbatlas-atlas-basic\mini> terraform plan
mongodbatlas_project.project: Refreshing state... [id=67bcd55dcf916732907efc58]

No changes. Your infrastructure matches the configuration.

Terraform has compared your real infrastructure against your configuration and found no differences, so no changes are needed.
PS C:\RESEARCH\Atlas\terraform-mongodbatlas-atlas-basic\mini> terraform plan

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # mongodbatlas_project.project will be created
  + resource "mongodbatlas_project" "project" {
      + cluster_count                                    = (known after apply)
      + created                                          = (known after apply)
      + id                                               = (known after apply)
      + ip_addresses                                     = (known after apply)
      + is_collect_database_specifics_statistics_enabled = (known after apply)
      + is_data_explorer_enabled                         = (known after apply)
      + is_extended_storage_sizes_enabled                = (known after apply)
      + is_performance_advisor_enabled                   = (known after apply)
      + is_realtime_performance_panel_enabled            = (known after apply)
      + is_schema_advisor_enabled                        = (known after apply)
      + is_slow_operation_thresholding_enabled           = (known after apply)
      + name                                             = "testAtlasImport"
      + org_id                                           = "6793c3f3e7099c7d2e929982"
      + region_usage_restrictions                        = (known after apply)
      + with_default_alerts_settings                     = true
    }

Plan: 1 to add, 0 to change, 0 to destroy.

───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these actions if you run "terraform apply" now.
PS C:\RESEARCH\Atlas\terraform-mongodbatlas-atlas-basic\mini> terraform import mongodbatlas_project.project 67bcd55dcf916732907efc58
mongodbatlas_project.project: Importing from ID "67bcd55dcf916732907efc58"...
mongodbatlas_project.project: Import prepared!
  Prepared mongodbatlas_project for import
mongodbatlas_project.project: Refreshing state... [id=67bcd55dcf916732907efc58]

Import successful!

The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.

PS C:\RESEARCH\Atlas\terraform-mongodbatlas-atlas-basic\mini> terraform plan
mongodbatlas_project.project: Refreshing state... [id=67bcd55dcf916732907efc58]

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # mongodbatlas_project.project will be updated in-place
  ~ resource "mongodbatlas_project" "project" {
        id                                               = "67bcd55dcf916732907efc58"
        name                                             = "testAtlasImport"
      + region_usage_restrictions                        = (known after apply)
      + with_default_alerts_settings                     = true
        # (11 unchanged attributes hidden)
    }

Plan: 0 to add, 1 to change, 0 to destroy.

───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these actions if you run "terraform apply" now.
PS C:\RESEARCH\Atlas\terraform-mongodbatlas-atlas-basic\mini> terraform apply -auto-approve
mongodbatlas_project.project: Refreshing state... [id=67bcd55dcf916732907efc58]

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # mongodbatlas_project.project will be updated in-place
  ~ resource "mongodbatlas_project" "project" {
        id                                               = "67bcd55dcf916732907efc58"
        name                                             = "testAtlasImport"
      + region_usage_restrictions                        = (known after apply)
      + with_default_alerts_settings                     = true
        # (11 unchanged attributes hidden)
    }

Plan: 0 to add, 1 to change, 0 to destroy.
mongodbatlas_project.project: Modifying... [id=67bcd55dcf916732907efc58]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 1m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 1m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 1m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 1m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 1m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 1m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 2m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 2m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 2m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 2m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 2m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 2m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 3m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 3m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 3m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 3m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 3m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 3m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 4m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 4m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 4m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 4m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 4m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 4m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 5m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 5m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 5m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 5m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 5m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 5m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 6m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 6m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 6m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 6m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 6m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 6m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 7m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 7m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 7m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 7m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 7m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 7m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 8m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 8m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 8m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 8m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 8m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 8m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 9m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 9m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 9m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 9m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 9m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 9m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 10m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 11m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 11m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 11m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 11m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 11m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 11m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 12m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 12m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 12m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 12m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 12m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 12m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 13m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 13m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 13m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 13m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 13m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 13m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 14m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 14m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 14m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 14m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 14m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 14m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 15m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 15m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 15m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 15m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 15m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 15m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 16m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 16m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 16m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 16m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 16m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 16m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 17m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 17m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 17m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 17m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 17m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 17m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 18m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 18m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 18m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 18m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 18m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 18m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 19m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 19m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 19m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 19m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 19m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 19m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 20m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 21m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 21m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 21m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 21m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 21m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 21m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 22m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 22m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 22m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 22m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 22m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 22m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 23m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 23m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 23m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 23m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 23m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 23m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 24m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 24m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 24m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 24m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 24m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 24m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 25m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 25m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 25m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 25m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 25m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 25m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 26m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 26m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 26m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 26m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 26m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 26m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 27m0s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 27m10s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 27m20s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 27m30s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 27m40s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 27m50s elapsed]
mongodbatlas_project.project: Still modifying... [id=67bcd55dcf916732907efc58, 28m0s elapsed]
╷
│ Error: error in project settings update
│
│   with mongodbatlas_project.project,
│   on main.tf line 1, in resource "mongodbatlas_project" "project":
│    1: resource "mongodbatlas_project" "project" {
│
│ error updating project (67bcd55dcf916732907efc58): error updating project's slow operation thresholding: Post
│ "https://cloud.mongodb.com/api/atlas/v2/groups/67bcd55dcf916732907efc58/managedSlowMs/enable": read tcp 192.168.7.244:54587->3.214.160.189:443: wsarecv:
│ An existing connection was forcibly closed by the remote host.

Code of Conduct

  • I agree to follow this project's Code of Conduct

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions