-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
276 lines (229 loc) · 9.19 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
# Copyright 2024 Solace Corporation. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Input variable definitions
# Required variables
variable "msg_vpn_name" {
description = "The name of the Message VPN"
type = string
}
variable "connection_factory_name" {
description = "The name of the connection factory"
type = string
}
# Optional variables
variable "local_transactions_enabled" {
description = "Enable or disable local transactions support for the connection factory. Enabling XA will enable local transactions support regardless of this variable."
type = bool
default = false
}
variable "xa_enabled" {
description = "Enable or disable XA transactions support for the connection factory."
type = bool
default = null
}
variable "transport_direct_transport_enabled" {
description = "Enable or disable usage of Direct Transport mode."
type = bool
default = null
}
variable "allow_duplicate_client_id_enabled" {
description = "Enable or disable whether new JMS connections can use the same Client identifier (ID) as an existing connection"
type = bool
default = null
}
variable "client_description" {
description = "The description of the Client"
type = string
default = null
}
variable "client_id" {
description = "The Client identifier (ID)"
type = string
default = null
}
variable "dto_receive_override_enabled" {
description = "Enable or disable overriding by the Subscriber (Consumer) of the deliver-to-one (DTO) property on messages"
type = bool
default = null
}
variable "dto_receive_subscriber_local_priority" {
description = "The priority for receiving deliver-to-one (DTO) messages by the Subscriber (Consumer) if the messages are published on the local broker that the Subscriber is directly connected to"
type = number
default = null
}
variable "dto_receive_subscriber_network_priority" {
description = "The priority for receiving deliver-to-one (DTO) messages by the Subscriber (Consumer) if the messages are published on a remote broker"
type = number
default = null
}
variable "dto_send_enabled" {
description = "Enable or disable the deliver-to-one (DTO) property on messages sent by the Publisher (Producer)"
type = bool
default = null
}
variable "dynamic_endpoint_create_durable_enabled" {
description = "Enable or disable whether a durable endpoint will be dynamically created on the broker when the client calls \"Session"
type = bool
default = null
}
variable "dynamic_endpoint_respect_ttl_enabled" {
description = "Enable or disable whether dynamically created durable and non-durable endpoints respect the message time-to-live (TTL) property"
type = bool
default = null
}
variable "guaranteed_receive_ack_timeout" {
description = "The timeout for sending the acknowledgment (ACK) for guaranteed messages received by the Subscriber (Consumer), in milliseconds"
type = number
default = null
}
variable "guaranteed_receive_reconnect_retry_count" {
description = "The maximum number of attempts to reconnect to the host or list of hosts after the guaranteed messaging connection has been lost"
type = number
default = null
}
variable "guaranteed_receive_reconnect_retry_wait" {
description = "The amount of time to wait before making another attempt to connect or reconnect to the host after the guaranteed messaging connection has been lost, in milliseconds"
type = number
default = null
}
variable "guaranteed_receive_window_size" {
description = "The size of the window for guaranteed messages received by the Subscriber (Consumer), in messages"
type = number
default = null
}
variable "guaranteed_receive_window_size_ack_threshold" {
description = "The threshold for sending the acknowledgment (ACK) for guaranteed messages received by the Subscriber (Consumer) as a percentage of `guaranteed_receive_window_size`"
type = number
default = null
}
variable "guaranteed_send_ack_timeout" {
description = "The timeout for receiving the acknowledgment (ACK) for guaranteed messages sent by the Publisher (Producer), in milliseconds"
type = number
default = null
}
variable "guaranteed_send_window_size" {
description = "The size of the window for non-persistent guaranteed messages sent by the Publisher (Producer), in messages"
type = number
default = null
}
variable "messaging_default_delivery_mode" {
description = "The default delivery mode for messages sent by the Publisher (Producer)"
type = string
default = null
}
variable "messaging_default_dmq_eligible_enabled" {
description = "Enable or disable whether messages sent by the Publisher (Producer) are Dead Message Queue (DMQ) eligible by default"
type = bool
default = null
}
variable "messaging_default_eliding_eligible_enabled" {
description = "Enable or disable whether messages sent by the Publisher (Producer) are Eliding eligible by default"
type = bool
default = null
}
variable "messaging_jmsx_user_id_enabled" {
description = "Enable or disable inclusion (adding or replacing) of the JMSXUserID property in messages sent by the Publisher (Producer)"
type = bool
default = null
}
variable "messaging_payload_compression_level" {
description = "The level of compression to apply to the message payload, from 1 (least compression) to 9 (most compression)"
type = number
default = null
}
variable "messaging_text_in_xml_payload_enabled" {
description = "Enable or disable encoding of JMS text messages in Publisher (Producer) messages as XML payload"
type = bool
default = null
}
variable "transport_compression_level" {
description = "The ZLIB compression level for the connection to the broker"
type = number
default = null
}
variable "transport_connect_retry_count" {
description = "The maximum number of retry attempts to establish an initial connection to the host or list of hosts"
type = number
default = null
}
variable "transport_connect_retry_per_host_count" {
description = "The maximum number of retry attempts to establish an initial connection to each host on the list of hosts"
type = number
default = null
}
variable "transport_connect_timeout" {
description = "The timeout for establishing an initial connection to the broker, in milliseconds"
type = number
default = null
}
variable "transport_keepalive_count" {
description = "The maximum number of consecutive application-level keepalive messages sent without the broker response before the connection to the broker is closed"
type = number
default = null
}
variable "transport_keepalive_enabled" {
description = "Enable or disable usage of application-level keepalive messages to maintain a connection with the broker"
type = bool
default = null
}
variable "transport_keepalive_interval" {
description = "The interval between application-level keepalive messages, in milliseconds"
type = number
default = null
}
variable "transport_msg_callback_on_io_thread_enabled" {
description = "Enable or disable delivery of asynchronous messages directly from the I/O thread"
type = bool
default = null
}
variable "transport_optimize_direct_enabled" {
description = "Enable or disable optimization for the Direct Transport delivery mode"
type = bool
default = null
}
variable "transport_port" {
description = "The connection port number on the broker for SMF clients"
type = number
default = null
}
variable "transport_read_timeout" {
description = "The timeout for reading a reply from the broker, in milliseconds"
type = number
default = null
}
variable "transport_receive_buffer_size" {
description = "The size of the receive socket buffer, in bytes"
type = number
default = null
}
variable "transport_reconnect_retry_count" {
description = "The maximum number of attempts to reconnect to the host or list of hosts after the connection has been lost"
type = number
default = null
}
variable "transport_reconnect_retry_wait" {
description = "The amount of time before making another attempt to connect or reconnect to the host after the connection has been lost, in milliseconds"
type = number
default = null
}
variable "transport_send_buffer_size" {
description = "The size of the send socket buffer, in bytes"
type = number
default = null
}
variable "transport_tcp_no_delay_enabled" {
description = "Enable or disable the TCP_NODELAY option"
type = bool
default = null
}