This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
111 lines (84 loc) · 1.55 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
variable "ecs_cluster" {
type = string
}
variable "ecs_task_role" {
type = string
}
variable "subnet_ids" {
type = list(string)
}
variable "uber_web_securitygroups" {
type = list(string)
}
variable "rabbitmq_securitygroups" {
type = list(string)
}
variable "redis_securitygroups" {
type = list(string)
}
variable "vpc_id" {
type = string
}
variable "hostname" {
type = string
}
variable "zonename" {
type = string
}
variable "ubersystem_container" {
type = string
default = "ghcr.io/magfest/magprime:main"
}
variable "loadbalancer_arn" {
type = string
}
variable "loadbalancer_dns_name" {
type = string
}
variable "lb_web_listener_arn" {
type = string
}
variable "lb_priority" {
type = number
}
variable "prefix" {
type = string
default = "uber"
}
# event, year, and environment are used to select the correct config tree in https://github.com/magfest/infrastructure/tree/master/reggie_config
variable "event" {
type = string
}
variable "year" {
type = string
}
variable "environment" {
type = string
}
variable "rds_instance" {
type = any
}
variable "db_endpoint" {
type = string
}
variable "db_hostname" {
type = string
}
variable "db_username" {
type = string
}
variable "db_password" {
type = string
}
variable "uber_db_name" {
type = string
}
variable "uber_db_username" {
type = string
}
variable "efs_id" {
type = string
}
variable "efs_dir" {
type = string
}