12 lines
757 B
HCL
12 lines
757 B
HCL
variable "project_id" { type = string }
|
|
variable "region" { type = string default = "us-central1" }
|
|
variable "name" { type = string default = "orders" }
|
|
variable "connector_cidr" { type = string default = "10.8.0.0/28" }
|
|
variable "sql_tier" { type = string default = "db-custom-1-3840" }
|
|
variable "db_user" { type = string default = "orders_app" }
|
|
variable "db_password" { type = string sensitive = true }
|
|
variable "api_image" { type = string default = "us-docker.pkg.dev/cloudrun/container/placeholder-api:latest" }
|
|
variable "worker_image" { type = string default = "us-docker.pkg.dev/cloudrun/container/placeholder-worker:latest" }
|
|
variable "api_max_instances" { type = number default = 20 }
|
|
variable "worker_max_instances" { type = number default = 20 }
|