-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (36 loc) · 904 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
variable "PROJECT_ID" {
type = string
description = "The project ID to deploy to"
}
variable "PROJECT_REGION" {
type = string
description = "The region to deploy to"
}
variable "DEX_DB_HOST" {
type = string
description = "The database host"
}
variable "DEX_DB_TYPE" {
type = string
description = "The database type"
}
variable "DEX_DB" {
type = string
description = "The database name"
}
variable "DEX_DB_USER" {
type = string
description = "The database user"
}
variable "DEX_DB_PASSWORD_SECRET_ID" {
type = string
description = "The GCP Secret ID of the database password"
}
variable "DEX_GITHUB_CLIENT_ID" {
type = string
description = "The GitHub OAuth client ID"
}
variable "DEX_GITHUB_CLIENT_SECRET_SECRET_ID" {
type = string
description = "The GCP Secret ID of the GitHub OAuth client secret"
}