-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
variables.tf
22 lines (22 loc) · 871 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
variable "environment" {
type = string
default = "production"
}
variable "email" { type = string }
variable "google_cloud_project" { type = string }
variable "domain" { type = string }
variable "client_url" { type = string }
variable "api_url" { type = string }
variable "realtime_url" { type = string }
variable "mongodbatlas_public_key" { type = string }
variable "mongodbatlas_private_key" { type = string }
variable "atlas_project_id" { type = string }
variable "refresh_token_secret" { type = string }
variable "access_token_secret" { type = string }
variable "github_client_id" { type = string }
variable "github_client_secret" { type = string }
variable "github_redirect_url" { type = string }
variable "client_image" { type = string }
variable "api_image" { type = string }
variable "realtime_image" { type = string }
variable "gke_zone" { type = string }