Home > Software engineering >  Have anyone came across this exception in terraform: ResourceNotFoundException: No progress informat
Have anyone came across this exception in terraform: ResourceNotFoundException: No progress informat

Time:08-24

I am almost new to terraform and DevOPS, but the above exception is intriguing me. The details about this specific one couldn't be found anywhere and there are no proper documentation at the time from Hashicorp. Do anyone have any idea about this.

ResourceNotFoundException: No progress information found

Also please note that the resource (aws_elasticsearch_domain) is alive and kicking, and proper arn can be found in statefile and when doing a terraform state show module.<..>.aws_elastic_search.<name>

enter image description here

I have added a picture of the error. There was an external change in ess (log_publishing_options) added externaly. I had added this to ignore_changeset make things work again. But still I don't know why terraform is throwing that error.

I'm using AWS provider version v4.18.0 with Terraform 1.2.7.

CodePudding user response:

As @MarkoE suggested, this seems to be an error related to Kibana/ElasticSearch, not Terraform.

I've been struggling with the same error message and tried to confirm this by running the changes shown in my Terraform plan (an Access policy update) manually into my OpenSearch domain and got the exact same message.

I'm using AWS provider version 4.26.0 with Terraform 1.2.7. The reason why no code is provided is that the error doesn't seem to be related to attribute misconfiguration.

OpenSearch: no progress information found

Unfortunately, I haven't found a solution yet but if I do I'll be sharing it with you soon!

CodePudding user response:

I had the same problem, upgrading the cluster Instance type from T2 to T3 resolved the issue.

Actions -> Edit cluster configuration -> change T2 to T3 ( you can do this via Terraform too ) enter image description here

  • Related