-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
80 lines (62 loc) · 1.09 KB
/
variables.tf
File metadata and controls
80 lines (62 loc) · 1.09 KB
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
variable "env_name" {
type = string
}
variable "app_name" {
type = string
}
variable "dev_mode" {
type = bool
description = "Enable to disable any type of deletion protection"
}
variable "flex_gateway_tag" {
type = string
}
# VPC
variable "vpc_id" {
type = string
}
variable "alb_subnet_ids" {
type = list(string)
}
variable "asg_subnet_ids" {
type = list(string)
}
variable "redis_subnet_ids" {
type = list(string)
}
variable "acm_cert_arn" {
type = string
}
# Elasticache
variable "redis_instance_type" {
type = string
}
variable "redis_engine_version" {
type = string
}
variable "redis_num_cache_clusters" {
type = number
}
# EC2
variable "ec2_instance_type" {
type = string
}
variable "ssh_key_name" {
type = string
}
variable "ssh_sg_id" {
type = string
}
variable "ec2_ami_id" {
type = string
}
variable "build_branch" {
type = string
default = "main"
description = "What git branch to checkout before running the build script. Defaults to `main`."
}
# Secrets
variable "registration_keeper_id" {
type = string
}
## Provisioner