-
Notifications
You must be signed in to change notification settings - Fork 0
/
tf_variables.tf
120 lines (98 loc) · 2.54 KB
/
tf_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
112
113
114
115
116
117
118
119
120
variable "name_prefix" {
description = "Name prefix of the application"
type = string
}
variable "enable_execute_command" {
description = "Whether to enable ECS execute command"
type = bool
default = false
}
variable "ecs_cluster_arn" {
description = "ARN of the ECS cluster"
type = string
}
variable "cloudwatch_log_group_name" {
description = "Name of the CloudWatch log group"
type = string
}
variable "aws_region" {
description = "AWS region"
type = string
}
variable "filebrowser_password" {
description = "Password for the file browser"
type = string
sensitive = true
}
variable "filebrowser_username" {
description = "Username for the file browser"
type = string
}
variable "efs_file_system_id" {
description = "ID of the EFS file system"
type = string
}
variable "access_point_id" {
description = "ID of the EFS access point"
type = string
}
variable "vpc_id" {
description = "ID of the VPC"
type = string
}
variable "subnet_ids" {
description = "List of subnet IDs"
type = list(string)
}
variable "ecs_service_security_group_id" {
description = "ID of the ECS service security group. Needs access to the EFS file system."
type = string
}
variable "task_execution_role_arn" {
description = "ARN of the task execution role"
type = string
}
variable "task_role_arn" {
description = "ARN of the task role. Needs permissions to access the EFS file system."
type = string
}
variable "cpu" {
description = "CPU for the file browser"
type = number
}
variable "memory" {
description = "Memory for the file browser"
type = number
}
variable "alb_listener_port" {
description = "Port of the LB listener"
type = number
}
variable "alb_listener_certificate_arn" {
description = "ARN of the ACM certificate for the LB listener"
type = string
}
variable "alb_arn" {
description = "ARN of the ALB"
type = string
}
variable "alb_whitelist_own_ip" {
description = "Whether to whitelist the current IP of the host executing the terraform code"
type = bool
default = false
}
variable "alb_ip_whitelist" {
description = "List of IP addresses to whitelist"
type = list(string)
default = []
}
variable "container_image_label" {
description = "Label of the container image"
type = string
default = "latest"
}
variable "enable_https" {
description = "Whether to enable HTTPS"
type = bool
default = true
}