-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
57 lines (46 loc) · 1.44 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
locals {
rock7_arn = "arn:aws:iam::902942185257:role/Rock7CustomerSQS"
}
//Names
variable "mo_queue_name" {
description = "The name for the mobile-originated queue in SQS"
type = string
default = "Rock7_MO"
}
variable "mt_queue_name" {
description = "The name for the mobile-terminated queue in SQS"
type = string
default = "Rock7_MT"
}
variable "mt_confirm_queue_name" {
description = "The name for the mobile-terminated confirmation queue in SQS"
type = string
default = "Rock7_MT_Confirm"
}
//Visibility timeout
variable "mo_visibility_timeout_seconds" {
description = "Time in seconds to allow an unacknowledged SQS message to be picked up again"
type = number
default = 30
}
variable "mt_confirm_visibility_timeout_seconds" {
description = "Time in seconds to allow an unacknowledged SQS message to be picked up again"
type = number
default = 30
}
//Message retention
variable "mo_message_retention_days" {
description = "Time in days an unacknowledged SQS message is kept before deletion"
type = number
default = 3
}
variable "mt_message_retention_days" {
description = "Time in days an unacknowledged SQS message is kept before deletion"
type = number
default = 3
}
variable "mt_confirm_message_retention_days" {
description = "Time in days an unacknowledged SQS message is kept before deletion"
type = number
default = 3
}