The latest version of the provider renamed the resource stackit_argus_instance to stackit_observability_instance, if I change the resource type in my code and use the moved block to use the new type without re-creating the resources then I get this error from terraform
│ Error: Unsupported `moved` across resource types
│
│ on ../../modules/argus/argus.tf line 10:
│ 10: moved {
│
│ The provider "registry.terraform.io/stackitcloud/stackit" does not support moved operations across resource types and providers.
My moved block looks like this
moved {
from = stackit_argus_instance.api
to = stackit_observability_instance.api
}
The latest version of the provider renamed the resource
stackit_argus_instance
tostackit_observability_instance
, if I change the resource type in my code and use the moved block to use the new type without re-creating the resources then I get this error from terraformMy moved block looks like this
You must in the provider add support for migrating from
stackit_argus_instance
tostackit_observability_instance
, here is the developer's documentation for doing this https://developer.hashicorp.com/terraform/plugin/framework/resources/state-moveCan you please handle this ASAP so we can migrate to the new type?