flutter-vienna-hackathon-25/wien_talks_server/deploy/gcp/terraform_gce/variables.tf
2025-08-17 11:57:58 +02:00

39 lines
754 B
HCL

# 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
}