Hi@akhtar,
You can launch an Application in Google App Engine using Terraform. Terraform has google_app_engine_application resource. This resource has the capability to create an Application on Google Cloud Engine. You can see the below example.
resource "google_app_engine_application" "app" {
project = google_project.my_project.project_id
location_id = "us-central"
}