-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
101 lines (85 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
variable "cplane" {
type = string
default = "us"
description = "Anypoint control plane"
}
variable "access_token" {
type = string
default = ""
description = "the anypoint access token"
}
variable "client_id" {
type = string
default = ""
description = "the anypoint connected app id"
}
variable "client_secret" {
type = string
default = ""
description = "the anypoint connected app secret"
}
variable "business_group" {
type = string
default = ""
description = "the anypoint organization id"
}
variable "region" {
type = string
default = ""
description = "the region where the queues will be created"
}
variable "q_default_ttl" {
type = number
default = 604800000
description = "the default time (in ms) to live for a message in a queue"
}
variable "q_default_lock_ttl" {
type = number
default = 900000
description = "the default time (in ms) where a message is locked before it can be consumed again"
}
variable "q_default_delivery_delay" {
type = number
default = 0
description = "the default delivery delay for a message in a queue in seconds"
}
variable "q_encrypted" {
type = bool
default = false
description = "whether to encrypt by default the queues"
}
variable "q_fifo" {
type = bool
default = false
description = "whether to make queues fifo type"
}
variable "dlq_default_ttl" {
type = number
default = 604800000
description = "the default time (in ms) to live for a message in a dead letter queue"
}
variable "dlq_default_lock_ttl" {
type = number
default = 900000
description = "the default time (in ms) where a message is locked before it can be consumed again in a dead letter queue"
}
variable "dlq_default_delivery_delay" {
type = number
default = 0
description = "the default delivery delay for a message in a dead letter queue in seconds"
}
variable "dlq_encrypted" {
type = bool
default = false
description = "whether to encrypt by default the dead letter queues"
}
variable "dlq_fifo" {
type = bool
default = false
description = "whether to make the dead letter queues fifo"
}
variable "ex_default_encrypted" {
type = bool
default = false
description = "whether to encrypt by default the exchanges"
}