# Project setup. variable "project" { type = string } variable "service_account_email" { type = string } variable "dns_managed_zone" { type = string } variable "top_domain" { type = string } variable "region" { type = string default = "us-central1" } variable "zone" { type = string default = "us-central1-c" } # Database variable "DATABASE_PASSWORD_PRODUCTION" { description = "The production database password, you can find it in the config/passwords.yaml file." type = string } variable "DATABASE_PASSWORD_STAGING" { description = "The staging database password, you can find it in the config/passwords.yaml file (no need to specify if you aren't deploying a staging environment)." type = string }