Your post’s formatting is a bit messed up, because the forum software has treated various parts as formatting directives.
Please enclose your copy/pasted code or error messages with ``` on a line by itself before and after, to activate code block formatting.
Terraform is informing you that the resource
was previously created using an aws provider defined inside module.s3-cross-account-replication with the alias central but now you have changed your code, and there is no such provider.
You need to re-add the aws provider named central, and apply your configuration, so that Terraform can destroy the previously removed module.s3-cross-account-replication.aws_s3_bucket_replication_configuration.replication.
In short, never remove a provider configuration, until after you’ve performed an apply, removing all resources that provider configuration was managing.