Cloud to local backend change

here is the code

terraform {
  cloud {
    organization = "terraform-cert-practice"

    workspaces {
      name = "provisioners"
    }
  }
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "5.7.0"
    }
  }
}

I have tried to move from remote backend to local backend and commented out the cloud and workspaces part of it and did “terraform init”, it said backend changed successfully, but I am getting an issue asking me to run terraform init when I run terraform plan, even the state file is reflecting that the remote backend is still terraform cloud

Hi @rajuptvs,

Please share the entire error message you are referring to, and the commands you ran before you saw it. Thanks!