-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
49 lines (40 loc) · 971 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
37
38
39
40
41
42
43
44
45
46
47
48
49
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
}
variable "region" {
description = "AWS region"
type = string
}
variable "availability_zones" {
description = "List of availability zones"
type = list(string)
}
variable "api_stage_name" {
description = "API stage name"
type = string
}
variable "api_proxy" {
description = "API proxy url"
type = string
}
variable "api_logs_retention_days" {
description = "API logs retention period in days"
type = number
}
variable "cluster_name" {
description = "ECS cluster name"
type = string
}
variable "task_files" {
description = "List of task JSON files in the tasks folder"
type = list(string)
}
variable "desired_tasks_count" {
description = "Number of instances of each task"
type = map(number)
}
variable "openapi_file" {
description = "OpenAPI file spec"
type = string
}