-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
81 lines (65 loc) · 1.94 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Define variables
variable "staffshare_backend_dir" {
description = "The directory containing the staffshare source code"
default = "./backend"
}
variable "staffshare_frontend_dir" {
description = "The directory containing the staffshare source code"
default = "./frontend"
}
variable "staffshare_frontend" {
description = "Container name for the frontend"
default = "staffshare-frontend"
}
variable "staffshare_backend" {
description = "Container name for the backend"
default = "staffshare-backend"
}
variable "staffshare_backend_image" {
description = "The Docker image for the backend"
default = "staffshare-backend:latest"
}
variable "staffshare_frontend_image" {
description = "The Docker image for the frontend"
default = "staffshare-frontend:latest"
}
variable "staffshare_backend_port" {
description = "The port the backend will listen on"
default = 8080
}
variable "staffshare_frontend_port" {
description = "The port the frontend will listen on"
default = 3000
}
variable "mongodb_image" {
description = "The Docker image for MongoDB"
default = "mongo:latest"
}
variable "staffshare_loadbalancer_dir" {
description = "The directory containing the loadbalancer source code"
default = "./loadbalancer"
}
variable "staffshare_loadbalancer_port" {
description = "The port the loadbalancer will listen on"
default = 80
}
variable "staffshare_email_address" {
description = "The email address to send emails from"
default = ""
}
variable "staffshare_email_password" {
description = "The password for the email address"
default = ""
}
variable "staffshare_google_client_secret" {
description = "The Google client secret for OAuth"
default = ""
}
variable "staffshare_google_client_id" {
description = "The Google client ID for OAuth"
default = ""
}
variable "staffshare_jwt_secret" {
description = "The JWT secret for authentication"
default = ""
}