mirror of
https://github.com/timokz/flutter-vienna-hackathon-25.git
synced 2025-11-08 23:44:19 +01:00
39 lines
754 B
HCL
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
|
|
}
|