-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
36 lines (29 loc) · 963 Bytes
/
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
variable "docker_image_tag" {
description = "Tag to use when pulling the electricsql/electric image from Docker Hub"
}
variable "container_environment" {
description = "Configuration for the sync service"
}
variable "awslogs_region" {
description = "The AWS region to send CloudWatch logs to"
}
variable "awslogs_stream_prefix" {
description = "Stream prefix to use in task's logs"
default = "electric-sync"
}
variable "cloudwatch_group_name" {
description = "Name of the CloudWatch log group to create"
default = "/ecs/electric-sync"
}
variable "task_execution_role_name" {
description = "Name of the task execution role"
default = "electric-task-execution-role"
}
variable "task_definition_family" {
description = "Name of the task definition family"
default = "electric-sync"
}
variable "container_name" {
description = "Name of the sole container that runs as part of the task"
default = "electric-sync"
}