-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
73 lines (58 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
variable "aws_region" {
default = "eu-west-1"
description = "AWS Region"
}
variable "env" {
default = "dev"
description = "Environment"
}
variable "project" {
default = "no-project-name"
description = "Project Name"
}
variable "description" {
default = "empty-project-description"
description = "Project Description"
}
variable "artifacts_bucket" {
default = "no-artifact-bucket-defined"
description = "Artifacts Bucket Name"
}
variable "ecs_event_role" {
default = "XXX"
description = "IAM Role used for CloudWatch"
}
variable "ecs_taskexec_role" {
default = "XXX"
description = "IAM Role used for Task Execution"
}
variable "subnets_ids" {
type = "list"
default = ["XXX"]
description = "Subnets IDs used for Fargate Containers"
}
variable "security_groups_ids" {
type = "list"
default = ["XXX"]
description = "Security Groups IDs used for Fargate"
}
variable "schedule" {
default = "rate(X hours)"
description = "Schedule for your job"
}
variable "assign_public_ip" {
default = "false"
description = "Set public IP on Fargate Container"
}
variable "ecs_cpu_units" {
default = "1024"
description = "Container: Number of CPU Units"
}
variable "ecs_memory" {
default = "2048"
description = "Container: Memory in MB"
}
variable "ecr_image_uri" {
default = "123456789012.dkr.ecr.xxxxx.amazonaws.com/xxxx:lastone"
description = "URI of the Docker Image in ECR"
}