variable "app_name" { description = "Name of the application" type = string } variable "gcp_project_id" { description = "GCP Project ID" type = string } variable "gcp_region" { description = "GCP region" type = string } variable "container_image" { description = "Docker image for the Flask app" type = string } variable "firebase_project_id" { description = "Firebase project ID" type = string } variable "flask_secret_key" { description = "Flask secret key" type = string sensitive = true } variable "service_account_email" { description = "Service account email for the Cloud Run service" type = string } variable "service_account_key_data" { description = "Service account key JSON data" type = string sensitive = true } variable "filevine_client_id" { description = "Filevine client ID" type = string sensitive = true } variable "filevine_client_secret" { description = "Filevine client secret" type = string sensitive = true } variable "filevine_pat" { description = "Filevine personal access token" type = string sensitive = true } variable "filevine_org_id" { description = "Filevine organization ID" type = string sensitive = true } variable "filevine_user_id" { description = "Filevine user ID" type = string sensitive = true }