-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
variable "name" {
type = string
description = "The name of ecs task definition."
}
variable "container_command" {
type = list
default = []
}
variable "container_memory" {}
variable "container_vcpus" {}
variable "container_image" {}
variable "container_environment" {
type = list
default = []
}
variable "job_name" {}
variable "job_queue" {}
variable "sfn_comment" {
default = "An example of the Amazon States Language for notification on an AWS Batch job completion"
}
variable "sfn_success_message" {
default = "batch job submitted through step functions succeeded"
}
variable "sfn_failure_message" {
default = "batch job submitted through step functions failed"
}
variable "iam_path" {
default = "/"
type = string
description = "Path in which to create the IAM Role and the IAM Policy."
}
variable "tags" {
default = {}
type = map(string)
description = "A mapping of tags to assign to all resources."
}
variable "create_sns_topic" {
default = true
type = string
description = "Specify true to enable creation of SNS topic"
}
variable "sns_topic_arn" {
default = ""
type = string
description = "Specify the SNS topic ARN"
}
variable "schedule_expression" {
default = null
}
variable "event_pattern" {
default = null
}