Bom dia, gente! Então, quando tento colocar uma nova região no código, sempre aparece o mesmo erro descrito abaixo:
"Error: Provider configuration not present │ │ To work with aws_instance.dev3 its original provider configuration at │ provider["registry.terraform.io/hashicorp/aws"].us-east-2 is required, but it has been removed. This occurs when a │ provider configuration is removed while objects created by that provider still exist in the state. Re-add the │ provider configuration to destroy aws_instance.dev3, after which you can remove the provider configuration again."
Meu código estava assim:
terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 4.0" } } }
provider "aws" { region = "us-east-2" }
Já tentei procurar na documentação do terraform algum código que pudesse resolver o problema, mas não o encontrei. Alguém mais teve o mesmo problema? Se sim, conseguiu resolver? Como?