-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
66 lines (52 loc) · 896 Bytes
/
Copy pathvariables.tf
File metadata and controls
66 lines (52 loc) · 896 Bytes
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
variable "aws_region" {
type = string
default = "us-east-2"
}
### GitHub Runner ###
variable "gh_runner_ami" {
type = string
}
variable "gh_runner_instance_type" {
type = string
}
variable "gh_runner_user_data" {
type = string
}
variable "gh_runner_token" {
type = string
sensitive = true
}
variable "gh_runner_usg_cis_profile" {
type = string
}
### Application Cluster ###
variable "create_application_cluster" {
type = bool
}
### RDS for MySQL ###
variable "rds_create_instance" {
type = bool
}
variable "rds_instance_class" {
type = string
}
variable "rds_username" {
type = string
}
variable "rds_password" {
type = string
sensitive = true
}
variable "rds_engine" {
type = string
}
variable "rds_engine_version" {
type = string
}
### ECS ###
variable "ecs_task_cpu" {
type = number
}
variable "ecs_task_memory" {
type = number
}