-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
60 lines (50 loc) · 1.37 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
variable "env" {
description = "Environment name"
default = ""
}
variable "release" {
type = map(string)
description = "Metadata about the release"
default = {}
}
variable "family" {
description = "A unique name for your task defintion."
type = string
}
variable "container_definitions" {
description = "A list of valid container definitions provided as a single valid JSON document."
type = list(string)
}
variable "policy" {
description = "A valid IAM policy for the task"
type = string
}
variable "volume" {
description = "Volume block map with 'name' and 'host_path'."
type = map(string)
default = {}
}
variable "assume_role_policy" {
description = "A valid IAM policy for assuming roles - optional"
type = string
default = ""
}
variable "is_test" {
description = "For testing only. Stops the call to AWS for sts"
default = false
}
variable "network_mode" {
description = "The Docker networking mode to use for the containers in the task"
type = string
default = "bridge"
}
variable "placement_constraint_on_demand_only" {
description = "Add placement constraint to only run on on-demand instances"
type = bool
default = false
}
variable "tags" {
description = "A map of tags to add to the resources"
type = map(string)
default = {}
}