Hi@akhtar,
Terraform has a resource named google_project. This resource has the capability to create a project in the GCP cloud. You can see the below example.
resource "google_project" "my_project" {
  name       = "My Project"
  project_id = "your-project-id"
  org_id     = "1234567"
}