-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
1356 lines (1147 loc) · 44.1 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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 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
}
# Optional variables
variable "authentication_basic_type" {
description = "The type of basic authentication for clients connecting to the Message VPN. Default is internal"
type = string
default = "internal"
}
variable "dmr_enabled" {
description = "Enable or disable Dynamic Message Routing (DMR) for the Message VPN. Default is enabled"
type = bool
default = true
}
variable "enabled" {
description = "Enable or disable the Message VPN and underlying created objects. Default is enabled"
type = bool
default = true
}
variable "jndi_enabled" {
description = "Enable or disable JNDI access for clients in the Message VPN"
type = bool
default = true
}
variable "max_msg_spool_usage" {
description = "The maximum message spool usage by the Message VPN, in megabytes"
type = number
default = 1500
}
variable "acl_profile_name" {
description = "The name of the ACL Profile to be created and added to the Message VPN. If not specified, no ACL Profile will be added. Default is \"\""
type = string
default = ""
}
variable "client_profile_name" {
description = "The name of the Client Profile to be created and added to the Message VPN. If not specified, no Client Profile will be added. Default is \"\""
type = string
default = ""
}
variable "oauth_profile_name" {
description = "The name of the OAuth Profile to be created and added to the Message VPN. If not specified, no OAuth Profile will be added. If specified, OAuth will be enabled on the VPN and this profile will be set as the default profile. Default is \"\""
type = string
default = ""
}
variable "authentication_oauth_enabled" {
description = "Enable or disable OAuth authentication"
type = bool
default = null
}
variable "cert_matching_rule_name" {
description = "The name of the Certification Matching Rule to be created and added to the Message VPN. A Cert Matching Rule is a collection of conditions and attribute filters that all have to be satisfied for certificate to be acceptable as authentication for a given username. If not specified, no Cert Matching Rule will be added. Default is \"\""
type = string
default = ""
}
variable "authentication_client_cert_enabled" {
description = "Enable or disable client certificate authentication in the Message VPN"
type = bool
default = null
}
variable "authentication_client_cert_certificate_matching_rules_enabled" {
description = "Enable or disable certificate matching rules"
type = bool
default = null
}
variable "authentication_oauth_default_profile_name" {
description = "The name of the profile to use when the client does not supply a profile name"
type = string
default = null
}
variable "oauth_profile_client_required_claims" {
description = "Additional claims to be verified in the ID token. Ignored if `oauth_profile_name` is not set"
type = set(object({
claim_name = string
claim_value = string
}))
default = []
}
variable "oauth_profile_resource_server_required_claims" {
description = "Additional claims to be verified in the access token. Ignored if `oauth_profile_name` is not set"
type = set(object({
claim_name = string
claim_value = string
}))
default = []
}
variable "cert_matching_rule_conditions" {
description = "The conditions to be added to the Certification Matching Rule. Ignored if `cert_matching_rule_name` is not set"
type = set(object({
source = string
expression = string
}))
default = []
}
variable "cert_matching_rule_attribute_filters" {
description = "The filters to be added to the Certification Matching Rule. A Cert Matching Rule Attribute Filter compares a username attribute to a string. Ignored if `cert_matching_rule_name` is not set"
type = set(object({
filter_name = string
attribute_name = string
attribute_value = string
}))
default = []
}
variable "alias" {
description = "The name of another Message VPN which this Message VPN is an alias for"
type = string
default = null
}
variable "allow_bridge_connections_enabled" {
description = "Enable or disable allowing Bridge clients using the Client Profile to connect"
type = bool
default = null
}
variable "allow_guaranteed_endpoint_create_durability" {
description = "The types of Queues and Topic Endpoints that clients using the client-profile can create"
type = string
default = null
}
variable "allow_guaranteed_endpoint_create_enabled" {
description = "Enable or disable allowing clients using the Client Profile to create topic endpoints or queues"
type = bool
default = null
}
variable "allow_guaranteed_msg_receive_enabled" {
description = "Enable or disable allowing clients using the Client Profile to receive guaranteed messages"
type = bool
default = null
}
variable "allow_guaranteed_msg_send_enabled" {
description = "Enable or disable allowing clients using the Client Profile to send guaranteed messages"
type = bool
default = null
}
variable "allow_shared_subscriptions_enabled" {
description = "Enable or disable allowing shared subscriptions"
type = bool
default = null
}
variable "allow_transacted_sessions_enabled" {
description = "Enable or disable allowing clients using the Client Profile to establish transacted sessions"
type = bool
default = null
}
variable "api_queue_management_copy_from_on_create_template_name" {
description = "The name of a queue template to copy settings from when a new queue is created by a client using the Client Profile"
type = string
default = null
}
variable "api_topic_endpoint_management_copy_from_on_create_template_name" {
description = "The name of a topic endpoint template to copy settings from when a new topic endpoint is created by a client using the Client Profile"
type = string
default = null
}
variable "authentication_basic_enabled" {
description = "Enable or disable basic authentication for clients connecting to the Message VPN"
type = bool
default = null
}
variable "authentication_basic_profile_name" {
description = "The name of the RADIUS or LDAP Profile to use for basic authentication"
type = string
default = null
}
variable "authentication_basic_radius_domain" {
description = "The RADIUS domain to use for basic authentication"
type = string
default = null
}
variable "authentication_client_cert_allow_api_provided_username_enabled" {
description = "Enable or disable allowing an incoming client connection to specify a Client Username via the API connect method"
type = bool
default = null
}
variable "authentication_client_cert_max_chain_depth" {
description = "The maximum depth for a client certificate chain"
type = number
default = null
}
variable "authentication_client_cert_revocation_check_mode" {
description = "The desired behavior for client certificate revocation checking"
type = string
default = null
}
variable "authentication_client_cert_username_source" {
description = "The field from the client certificate to use as the client username"
type = string
default = null
}
variable "authentication_client_cert_validate_date_enabled" {
description = "Enable or disable validation of the \"Not Before\" and \"Not After\" validity dates in the client certificate"
type = bool
default = null
}
variable "authentication_kerberos_allow_api_provided_username_enabled" {
description = "Enable or disable allowing an incoming client connection to specify a Client Username via the API connect method"
type = bool
default = null
}
variable "authentication_kerberos_enabled" {
description = "Enable or disable Kerberos authentication for clients connecting to the Message VPN"
type = bool
default = null
}
variable "authorization_groups_claim_name" {
description = "The name of the groups claim"
type = string
default = null
}
variable "authorization_groups_claim_string_format" {
description = "The format of the authorization groups claim value when it is a string"
type = string
default = null
}
variable "authorization_ldap_group_membership_attribute_name" {
description = "The name of the attribute that is retrieved from the LDAP server as part of the LDAP search when authorizing a client connecting to the Message VPN"
type = string
default = null
}
variable "authorization_ldap_trim_client_username_domain_enabled" {
description = "Enable or disable client-username domain trimming for LDAP lookups of client connections"
type = bool
default = null
}
variable "authorization_profile_name" {
description = "The name of the LDAP Profile to use for client authorization"
type = string
default = null
}
variable "authorization_type" {
description = "The type of authorization to use for clients connecting to the Message VPN"
type = string
default = null
}
variable "bridging_tls_server_cert_max_chain_depth" {
description = "The maximum depth for a server certificate chain"
type = number
default = null
}
variable "bridging_tls_server_cert_validate_date_enabled" {
description = "Enable or disable validation of the \"Not Before\" and \"Not After\" validity dates in the server certificate"
type = bool
default = null
}
variable "bridging_tls_server_cert_validate_name_enabled" {
description = "Enable or disable the standard TLS authentication mechanism of verifying the name used to connect to the bridge"
type = bool
default = null
}
variable "client_connect_default_action" {
description = "The default action to take when a client using the ACL Profile connects to the Message VPN"
type = string
default = null
}
variable "client_id" {
description = "The OAuth client id"
type = string
default = null
}
variable "client_required_type" {
description = "The required value for the TYP field in the ID token header"
type = string
default = null
}
variable "client_secret" {
description = "The OAuth client secret"
type = string
default = null
sensitive = true
}
variable "client_validate_type_enabled" {
description = "Enable or disable verification of the TYP field in the ID token header"
type = bool
default = null
}
variable "compression_enabled" {
description = "Enable or disable allowing clients using the Client Profile to use compression"
type = bool
default = null
}
variable "disconnect_on_token_expiration_enabled" {
description = "Enable or disable the disconnection of clients when their tokens expire"
type = bool
default = null
}
variable "eliding_delay" {
description = "The amount of time to delay the delivery of messages to clients using the Client Profile after the initial message has been delivered (the eliding delay interval), in milliseconds"
type = number
default = null
}
variable "eliding_enabled" {
description = "Enable or disable message eliding for clients using the Client Profile"
type = bool
default = null
}
variable "eliding_max_topic_count" {
description = "The maximum number of topics tracked for message eliding per client connection using the Client Profile"
type = number
default = null
}
variable "endpoint_discovery" {
description = "The OpenID Connect discovery endpoint or OAuth Authorization Server Metadata endpoint"
type = string
default = null
}
variable "endpoint_discovery_refresh_interval" {
description = "The number of seconds between discovery endpoint requests"
type = number
default = null
}
variable "endpoint_introspection" {
description = "The OAuth introspection endpoint"
type = string
default = null
}
variable "endpoint_introspection_timeout" {
description = "The maximum time in seconds a token introspection request is allowed to take"
type = number
default = null
}
variable "endpoint_jwks" {
description = "The OAuth JWKS endpoint"
type = string
default = null
}
variable "endpoint_jwks_refresh_interval" {
description = "The number of seconds between JWKS endpoint requests"
type = number
default = null
}
variable "endpoint_userinfo" {
description = "The OpenID Connect Userinfo endpoint"
type = string
default = null
}
variable "endpoint_userinfo_timeout" {
description = "The maximum time in seconds a userinfo request is allowed to take"
type = number
default = null
}
variable "event_client_provisioned_endpoint_spool_usage_threshold" {
description = "The thresholds for the message spool usage event of Queues and Topic Endpoints provisioned by clients, relative to `max_msg_spool_usage` for these Queues and Topic Endpoints"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
})
default = null
}
variable "event_connection_count_per_client_username_threshold" {
description = "The thresholds for the Client Username connection count event of the Client Profile, relative to `max_connection_count_per_client_username`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_connection_count_threshold" {
description = "The thresholds for the client connection count event of the Message VPN, relative to `max_connection_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_egress_flow_count_threshold" {
description = "The thresholds for the egress flow count event of the Message VPN, relative to `max_egress_flow_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_egress_msg_rate_threshold" {
description = "The thresholds for the egress message rate event of the Message VPN"
type = object({
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_endpoint_count_per_client_username_threshold" {
description = "The thresholds for the Client Username endpoint count event of the Client Profile, relative to `max_endpoint_count_per_client_username`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_endpoint_count_threshold" {
description = "The thresholds for the Queues and Topic Endpoints count event of the Message VPN, relative to `max_endpoint_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_ingress_flow_count_threshold" {
description = "The thresholds for the receive flow count event of the Message VPN, relative to `max_ingress_flow_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_ingress_msg_rate_threshold" {
description = "The thresholds for the receive message rate event of the Message VPN"
type = object({
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_large_msg_threshold" {
description = "The threshold, in kilobytes, after which a message is considered to be large for the Message VPN"
type = number
default = null
}
variable "event_log_tag" {
description = "A prefix applied to all published Events in the Message VPN"
type = string
default = null
}
variable "event_msg_spool_usage_threshold" {
description = "The thresholds for the message spool usage event of the Message VPN, relative to `max_msg_spool_usage`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_publish_client_enabled" {
description = "Enable or disable Client level Event message publishing"
type = bool
default = null
}
variable "event_publish_msg_vpn_enabled" {
description = "Enable or disable Message VPN level Event message publishing"
type = bool
default = null
}
variable "event_publish_subscription_mode" {
description = "Subscription level Event message publishing mode"
type = string
default = null
}
variable "event_publish_topic_format_mqtt_enabled" {
description = "Enable or disable Event publish topics in MQTT format"
type = bool
default = null
}
variable "event_publish_topic_format_smf_enabled" {
description = "Enable or disable Event publish topics in SMF format"
type = bool
default = null
}
variable "event_service_amqp_connection_count_threshold" {
description = "The thresholds for the AMQP client connection count event of the Message VPN, relative to `service_amqp_max_connection_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_service_mqtt_connection_count_threshold" {
description = "The thresholds for the MQTT client connection count event of the Message VPN, relative to `service_mqtt_max_connection_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_service_rest_incoming_connection_count_threshold" {
description = "The thresholds for the incoming REST client connection count event of the Message VPN, relative to `service_rest_incoming_max_connection_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_service_smf_connection_count_per_client_username_threshold" {
description = "The thresholds for the client username SMF connection count event of the Client Profile, relative to `service_smf_max_connection_count_per_client_username`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_service_smf_connection_count_threshold" {
description = "The thresholds for the SMF client connection count event of the Message VPN, relative to `service_smf_max_connection_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_service_web_connection_count_per_client_username_threshold" {
description = "The thresholds for the Client Username Web Transport connection count event of the Client Profile, relative to `service_web_max_connection_count_per_client_username`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_service_web_connection_count_threshold" {
description = "The thresholds for the Web Transport client connection count event of the Message VPN, relative to `service_web_max_connection_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_subscription_count_threshold" {
description = "The thresholds for the subscription count event of the Message VPN, relative to `max_subscription_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_transacted_session_count_threshold" {
description = "The thresholds for the transacted session count event of the Message VPN, relative to `max_transacted_session_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "event_transaction_count_threshold" {
description = "The thresholds for the transaction count event of the Message VPN, relative to `max_transaction_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
set_value = optional(number)
clear_value = optional(number)
})
default = null
}
variable "export_subscriptions_enabled" {
description = "Enable or disable the export of subscriptions in the Message VPN to other routers in the network over Neighbor links"
type = bool
default = null
}
variable "issuer" {
description = "The Issuer Identifier for the OAuth provider"
type = string
default = null
}
variable "max_connection_count" {
description = "The maximum number of client connections to the Message VPN"
type = number
default = null
}
variable "max_connection_count_per_client_username" {
description = "The maximum number of client connections per Client Username using the Client Profile"
type = number
default = null
}
variable "max_egress_flow_count" {
description = "The maximum number of transmit flows that can be created in the Message VPN"
type = number
default = null
}
variable "max_endpoint_count" {
description = "The maximum number of Queues and Topic Endpoints that can be created in the Message VPN"
type = number
default = null
}
variable "max_endpoint_count_per_client_username" {
description = "The maximum number of queues and topic endpoints that can be created by clients with the same Client Username using the Client Profile"
type = number
default = null
}
variable "max_ingress_flow_count" {
description = "The maximum number of receive flows that can be created in the Message VPN"
type = number
default = null
}
variable "max_kafka_broker_connection_count" {
description = "The maximum number of simultaneous Kafka broker connections of the Message VPN"
type = number
default = null
}
variable "max_msgs_per_transaction" {
description = "The maximum number of publisher and consumer messages combined that is allowed within a transaction for each client associated with this client-profile"
type = number
default = null
}
variable "max_subscription_count" {
description = "The maximum number of local subscriptions that can be added to the Message VPN"
type = number
default = null
}
variable "max_transacted_session_count" {
description = "The maximum number of transacted sessions that can be created in the Message VPN"
type = number
default = null
}
variable "max_transaction_count" {
description = "The maximum number of transactions that can be created in the Message VPN"
type = number
default = null
}
variable "mqtt_retain_max_memory" {
description = "The maximum total memory usage of the MQTT Retain feature for this Message VPN, in MB"
type = number
default = null
}
variable "mqtt_username_validate_enabled" {
description = "Enable or disable whether the API provided MQTT client username will be validated against the username calculated from the token(s)"
type = bool
default = null
}
variable "oauth_role" {
description = "The OAuth role of the broker"
type = string
default = null
}
variable "proxy_name" {
description = "The name of the proxy to use for discovery, user info, jwks, and introspection requests"
type = string
default = null
}
variable "publish_topic_default_action" {
description = "The default action to take when a client using the ACL Profile publishes to a topic in the Message VPN"
type = string
default = null
}
variable "queue_control1_max_depth" {
description = "The maximum depth of the \"Control 1\" (C-1) priority queue, in work units"
type = number
default = null
}
variable "queue_control1_min_msg_burst" {
description = "The number of messages that are always allowed entry into the \"Control 1\" (C-1) priority queue, regardless of the `queue_control1_max_depth` value"
type = number
default = null
}
variable "queue_direct1_max_depth" {
description = "The maximum depth of the \"Direct 1\" (D-1) priority queue, in work units"
type = number
default = null
}
variable "queue_direct1_min_msg_burst" {
description = "The number of messages that are always allowed entry into the \"Direct 1\" (D-1) priority queue, regardless of the `queue_direct1_max_depth` value"
type = number
default = null
}
variable "queue_direct2_max_depth" {
description = "The maximum depth of the \"Direct 2\" (D-2) priority queue, in work units"
type = number
default = null
}
variable "queue_direct2_min_msg_burst" {
description = "The number of messages that are always allowed entry into the \"Direct 2\" (D-2) priority queue, regardless of the `queue_direct2_max_depth` value"
type = number
default = null
}
variable "queue_direct3_max_depth" {
description = "The maximum depth of the \"Direct 3\" (D-3) priority queue, in work units"
type = number
default = null
}
variable "queue_direct3_min_msg_burst" {
description = "The number of messages that are always allowed entry into the \"Direct 3\" (D-3) priority queue, regardless of the `queue_direct3_max_depth` value"
type = number
default = null
}
variable "queue_guaranteed1_max_depth" {
description = "The maximum depth of the \"Guaranteed 1\" (G-1) priority queue, in work units"
type = number
default = null
}
variable "queue_guaranteed1_min_msg_burst" {
description = "The number of messages that are always allowed entry into the \"Guaranteed 1\" (G-1) priority queue, regardless of the `queue_guaranteed1_max_depth` value"
type = number
default = null
}
variable "reject_msg_to_sender_on_no_subscription_match_enabled" {
description = "Enable or disable the sending of a negative acknowledgment (NACK) to a client using the Client Profile when discarding a guaranteed message due to no matching subscription found"
type = bool
default = null
}
variable "replication_ack_propagation_interval_msg_count" {
description = "The acknowledgment (ACK) propagation interval for the replication Bridge, in number of replicated messages"
type = number
default = null
}
variable "replication_allow_client_connect_when_standby_enabled" {
description = "Enable or disable allowing clients using the Client Profile to connect to the Message VPN when its replication state is standby"
type = bool
default = null
}
variable "replication_bridge_authentication_basic_client_username" {
description = "The Client Username the replication Bridge uses to login to the remote Message VPN"
type = string
default = null
}
variable "replication_bridge_authentication_basic_password" {
description = "The password for the Client Username"
type = string
default = null
sensitive = true
}
variable "replication_bridge_authentication_client_cert_content" {
description = "The PEM formatted content for the client certificate used by this bridge to login to the Remote Message VPN"
type = string
default = null
sensitive = true
}
variable "replication_bridge_authentication_client_cert_password" {
description = "The password for the client certificate"
type = string
default = null
sensitive = true
}
variable "replication_bridge_authentication_scheme" {
description = "The authentication scheme for the replication Bridge in the Message VPN"
type = string
default = null
}
variable "replication_bridge_compressed_data_enabled" {
description = "Enable or disable use of compression for the replication Bridge"
type = bool
default = null
}
variable "replication_bridge_egress_flow_window_size" {
description = "The size of the window used for guaranteed messages published to the replication Bridge, in messages"
type = number
default = null
}
variable "replication_bridge_retry_delay" {
description = "The number of seconds that must pass before retrying the replication Bridge connection"
type = number
default = null
}
variable "replication_bridge_tls_enabled" {
description = "Enable or disable use of encryption (TLS) for the replication Bridge connection"
type = bool
default = null
}
variable "replication_bridge_unidirectional_client_profile_name" {
description = "The Client Profile for the unidirectional replication Bridge in the Message VPN"
type = string
default = null
}
variable "replication_enabled" {
description = "Enable or disable replication for the Message VPN"
type = bool
default = null
}
variable "replication_enabled_queue_behavior" {
description = "The behavior to take when enabling replication for the Message VPN, depending on the existence of the replication Queue"
type = string
default = null
sensitive = true
}
variable "replication_queue_max_msg_spool_usage" {
description = "The maximum message spool usage by the replication Bridge local Queue (quota), in megabytes"
type = number
default = null
}
variable "replication_queue_reject_msg_to_sender_on_discard_enabled" {
description = "Enable or disable whether messages discarded on the replication Bridge local Queue are rejected back to the sender"
type = bool
default = null
}
variable "replication_reject_msg_when_sync_ineligible_enabled" {
description = "Enable or disable whether guaranteed messages published to synchronously replicated Topics are rejected back to the sender when synchronous replication becomes ineligible"
type = bool
default = null
}
variable "replication_role" {
description = "The replication role for the Message VPN"
type = string
default = null
}
variable "replication_transaction_mode" {
description = "The transaction replication mode for all transactions within the Message VPN"
type = string
default = null
}
variable "resource_server_parse_access_token_enabled" {
description = "Enable or disable parsing of the access token as a JWT"
type = bool
default = null
}
variable "resource_server_required_audience" {
description = "The required audience value"
type = string
default = null
}
variable "resource_server_required_issuer" {
description = "The required issuer value"
type = string
default = null
}
variable "resource_server_required_scope" {
description = "A space-separated list of scopes that must be present in the scope claim"
type = string
default = null
}
variable "resource_server_required_type" {
description = "The required TYP value"
type = string
default = null
}