Hi@akhtar,
You can create a service account in the GCP cloud. For that Terraform has a resource named google_service_account. This has the capability to create a service account. You can see the below example.
resource "google_service_account" "myaccount" {
account_id = "myaccount"
display_name = "My Service Account"
}