GCP Project Movement from org to Folder

Im not able to Move the GCP project to Folder using terraform. Can anyone share the document if available. I was trying the follwing Code for the movement but unfortunatly its not working.

provider “google” {
credentials = file(“<PATH_TO_YOUR_SERVICE_ACCOUNT_KEY_FILE>”)
project = “<YOUR_PROJECT_ID>”
region = “us-central1” # Change to your preferred region
}
resource “google_project” “project” {
name = “<YOUR_PROJECT_NAME>”
project_id = “<YOUR_PROJECT_ID>”
parent = “<NEW_FOLDER_ID>” # Set this to the new folder’s ID or an empty string if moving back to the organization.
}