-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (39 loc) · 1.31 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
variable "vpc_id" {
description = "ID of the VPC created in the root module"
}
variable "public_subnet_cidrs" {
description = "Address space of the public subnet, in CIDR notation"
}
variable "public_subnet_ids" {
description = "IDs of public subnets which the ECS service will run in"
}
variable "task_definition" {
description = "The task definition to run as part of the ECS service"
}
variable "security_group_name_prefix" {
description = "Name prefix to use for the 'Security group name' attribute"
default = "electric-ecs-"
}
variable "security_group_name" {
description = "Name of the security group created for the ECS cluster"
default = "Electric ECS security group"
}
variable "cluster_name" {
description = "Name of the new ECS cluster"
default = "electric-cluster"
}
variable "service_name" {
description = "Name of the Electric ECS service"
default = "electric-sync"
}
variable "task_container_name" {
description = "Name of the container defined in the 'ecs_task_definition' module"
}
variable "main_target_group_name" {
description = "Name of the target group for the HTTP endpoint"
default = "electric-main"
}
variable "proxy_target_group_name" {
description = "Name of the target group for the Migrations proxy TCP endpoint"
default = "electric-proxy"
}