-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
824 lines (627 loc) · 19.8 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
##
## Mandatory
##
variable "am_oauth2_client_realm" {
description = "Realm where to configure the OIDC client"
type = string
}
variable "am_oauth2_client_id" {
description = "The client id"
type = string
}
### Secret
variable "am_oauth2_client_secret" {
description = "The client secret"
type = string
sensitive = true
default = null
}
variable "am_oauth2_client_secret_override" {
description = "The client secret"
type = bool
default = false
}
variable "am_oauth2_client_tokenEndpointAuthMethod" {
description = "The client authentication method"
type = string
default = "client_secret_basic"
validation {
condition = contains(["client_secret_basic", "client_secret_post", "private_key_jwt", "tls_client_auth", "self_signed_tls_client_auth", "none"], var.am_oauth2_client_tokenEndpointAuthMethod)
error_message = "Valid values are (client_secret_basic, client_secret_post, private_key_jwt, tls_client_auth, self_signed_tls_client_auth, none)."
}
}
### Common
variable "am_oauth2_client_scopes" {
description = "The client scopes"
type = list(string)
default = []
}
variable "am_oauth2_client_defaultScopes" {
description = "The client defaultScopes"
type = list(string)
default = []
}
variable "am_oauth2_client_redirectionUris" {
description = "The client redirect uris"
type = list(string)
default = []
}
variable "am_oauth2_client_status" {
description = "The client status"
type = string
default = "Active"
validation {
condition = contains(["Active", "Inactive"], var.am_oauth2_client_status)
error_message = "Valid values are (Active, Inactive)."
}
}
variable "am_oauth2_client_clientType" {
description = "The client Type"
type = string
default = "Confidential"
validation {
condition = contains(["Confidential", "Public"], var.am_oauth2_client_clientType)
error_message = "Valid values are (Confidential, Public)."
}
}
### Fonctional settings
variable "am_oauth2_client_grantTypes" {
description = "The client grantTypes"
type = list(string)
default = [
"authorization_code",
"client_credentials"
]
validation {
condition = alltrue([
for e in var.am_oauth2_client_grantTypes : contains([
"implicit",
"urn:ietf:params:oauth:grant-type:saml2-bearer",
"refresh_token",
"password",
"client_credentials",
"urn:ietf:params:oauth:grant-type:device_code",
"authorization_code",
"urn:openid:params:grant-type:ciba",
"urn:ietf:params:oauth:grant-type:uma-ticket",
"urn:ietf:params:oauth:grant-type:token-exchange",
"urn:ietf:params:oauth:grant-type:jwt-bearer"
], e)
])
error_message = "Invalid Grant Type"
}
}
variable "am_oauth2_client_responseTypes" {
description = "The client responseTypes"
type = list(string)
default = ["code", "token", "id_token"]
validation {
condition = alltrue([
for e in var.am_oauth2_client_responseTypes : contains([
"code",
"token",
"id_token",
"code token",
"token id_token",
"code id_token",
"code token id_token",
"device_code",
"device_code id_token"
], e)
])
error_message = "Invalid Grant Type (code, token id_token, code token, token id_token, code id_token, code token id_token, device_code, device_code id_token) "
}
}
variable "am_oauth2_client_subjectType" {
description = "The client subjectType"
type = string
default = "public"
validation {
condition = contains(["public", "pairwise"], var.am_oauth2_client_subjectType)
error_message = "Valid values are (public, pairwise)."
}
}
variable "am_oauth2_client_sectorIdentifierUri" {
description = "The client sectorIdentifierUri"
type = string
default = null
}
variable "am_oauth2_client_tokenExchangeAuthLevel" {
description = "The client tokenExchangeAuthLevel"
type = number
default = 0
}
variable "am_oauth2_client_mixUpMitigation" {
description = "The client mixUpMitigation"
type = bool
default = false
}
variable "am_oauth2_client_require_pushed_authorization_requests" {
description = "The client require_pushed_authorization_requests"
type = bool
default = false
}
### Local Dev
variable "am_oauth2_client_loopbackInterfaceRedirection" {
description = "The client loopbackInterfaceRedirection"
type = bool
default = false
}
### Consent Settings
variable "am_oauth2_client_isConsentImplied" {
description = "The client isConsentImplied"
type = bool
default = true
}
### SPA Setting
variable "am_oauth2_client_javascriptOrigins" {
description = "The client javascriptOrigins"
type = list(string)
default = []
}
### Client Display setting
variable "am_oauth2_client_descriptions" {
description = "The client descriptions"
type = list(string)
default = []
}
variable "am_oauth2_client_name" {
description = "The client name"
type = list(string)
default = []
}
variable "am_oauth2_client_displayName" {
description = "The client displayName"
type = list(string)
default = []
}
variable "am_oauth2_client_logoUri" {
description = "The client logoUri (format URI|locale)"
type = list(string)
default = []
}
variable "am_oauth2_client_clientUri" {
description = "The client clientUri (format URI|locale)"
type = list(string)
default = []
}
variable "am_oauth2_client_policyUri" {
description = "The client Privacy policyUri (format URI|locale)"
type = list(string)
default = []
}
variable "am_oauth2_client_tosURI" {
description = "The client Privacy Terms of Service URI (format URI|locale)"
type = list(string)
default = []
}
variable "am_oauth2_client_contacts" {
description = "The client email contact"
type = list(string)
default = []
}
variable "am_oauth2_client_softwareVersion" {
description = "The client softwareVersion"
type = string
default = ""
}
variable "am_oauth2_client_softwareIdentity" {
description = "The client softwareIdentity"
type = string
default = ""
}
### Timing
variable "am_oauth2_client_refreshTokenLifetime" {
description = "The client refreshTokenLifetime"
type = number
default = 0
}
variable "am_oauth2_client_accessTokenLifetime" {
description = "The client accessTokenLifetime"
type = number
default = 0
}
variable "am_oauth2_client_authorizationCodeLifetime" {
description = "The client authorizationCodeLifetime"
type = number
default = 0
}
variable "am_oauth2_client_refreshTokenGracePeriod" {
description = "The client refreshTokenGracePeriod"
type = number
default = 0
}
## OIDC
variable "am_oauth2_client_jwtTokenLifetime" {
description = "The client OIDC jwtTokenLifetime"
type = number
default = 0
}
variable "am_oauth2_client_defaultMaxAge" {
description = "The client OIDC defaultMaxAge"
type = number
default = 600
}
variable "am_oauth2_client_defaultMaxAgeEnabled" {
description = "The client OIDC defaultMaxAgeEnabled"
type = bool
default = false
}
### Custom
variable "am_oauth2_client_customProperties" {
description = "The client customProperties"
type = list(string)
default = []
}
### Dynamic Registration
variable "am_oauth2_client_registration_requestUris" {
description = "The client registration requestUris"
type = list(string)
default = []
}
variable "am_oauth2_client_registration_updateAccessToken" {
description = "The client registration updateAccessToken"
type = string
default = ""
}
### Value Templace
variable "am_oauth2_client_agentgroup" {
description = "The client agentgroup"
type = string
default = ""
}
##
## Response Format
##
variable "am_oauth2_client_userinfoResponseFormat" {
description = "The client userinfoResponseFormat"
type = string
default = "JSON"
validation {
condition = contains(["JSON", "ENCRYPTED_JWT", "SIGNED_THEN_ENCRYPTED_JWT", "SIGNED_JWT"], var.am_oauth2_client_userinfoResponseFormat)
error_message = "Invalid userinfoResponseFormat."
}
}
variable "am_oauth2_client_tokenIntrospectionResponseFormat" {
description = "The client tokenIntrospectionResponseFormat"
type = string
default = "JSON"
validation {
condition = contains(["JSON", "ENCRYPTED_JWT", "SIGNED_THEN_ENCRYPTED_JWT", "SIGNED_JWT"], var.am_oauth2_client_tokenIntrospectionResponseFormat)
error_message = "Invalid userinfoResponseFormat."
}
}
##
## OIDC Settings
##
variable "am_oauth2_client_claims" {
description = "The client OIDC claims"
type = list(string)
default = []
}
variable "am_oauth2_client_defaultAcrValues" {
description = "The client OIDC defaultAcrValues"
type = list(string)
default = []
}
variable "am_oauth2_client_postLogoutRedirectUri" {
description = "The client OIDC postLogoutRedirectUri"
type = list(string)
default = []
}
variable "am_oauth2_client_clientSessionUri" {
description = "The client OIDC clientSessionUri"
type = string
default = null
}
variable "am_oauth2_client_backchannel_logout_uri" {
description = "The client OIDC backchannel_logout_uri"
type = string
default = null
}
variable "am_oauth2_client_backchannel_logout_session_required" {
description = "The client OIDC backchannel_logout_session_required"
type = bool
default = false
}
##
## Security Setting
##
variable "am_oauth2_client_tokenEndpointAuthSigningAlgorithm" {
description = "The client tokenEndpointAuthSigningAlgorithm"
type = string
default = "RS256"
}
variable "am_oauth2_client_userinfoSignedResponseAlg" {
description = "The client userinfoSignedResponseAlg"
type = string
default = "RS256"
}
variable "am_oauth2_client_userinfoEncryptedResponseAlg" {
description = "The client userinfoEncryptedResponseAlg"
type = string
default = null
}
variable "am_oauth2_client_userinfoEncryptedResponseEncryptionAlgorithm" {
description = "The client userinfoEncryptedResponseEncryptionAlgorithm"
type = string
default = "A128CBC-HS256"
}
variable "am_oauth2_client_idTokenSignedResponseAlg" {
description = "The client idTokenSignedResponseAlg"
type = string
default = "RS256"
}
variable "am_oauth2_client_authorizationResponseSigningAlgorithm" {
description = "The client authorizationResponseSigningAlgorithm"
type = string
default = "RS256"
}
variable "am_oauth2_client_tokenIntrospectionSignedResponseAlg" {
description = "The client tokenIntrospectionSignedResponseAlg"
type = string
default = "RS256"
}
variable "am_oauth2_client_requestParameterSignedAlg" {
description = "The client requestParameterSignedAlg"
type = string
default = "RS256"
}
variable "am_oauth2_client_requestParameterEncryptedEncryptionAlgorithm" {
description = "The client requestParameterEncryptedEncryptionAlgorithm"
type = string
default = "A128CBC-HS256"
}
variable "am_oauth2_client_requestParameterEncryptedAlg" {
description = "The client requestParameterEncryptedAlg"
type = string
default = null
}
variable "am_oauth2_client_tokenIntrospectionEncryptedResponseEncryptionAlgorithm" {
description = "The client tokenIntrospectionEncryptedResponseEncryptionAlgorithm"
type = string
default = "A128CBC-HS256"
}
variable "am_oauth2_client_tokenIntrospectionEncryptedResponseAlg" {
description = "The client tokenIntrospectionEncryptedResponseAlg"
type = string
default = "RSA-OAEP-256"
}
variable "am_oauth2_client_idTokenEncryptionEnabled" {
description = "idTokenEncryptionEnabled"
type = bool
default = false
}
variable "am_oauth2_client_idTokenEncryptionAlgorithm" {
description = "idTokenEncryptionEnabled"
type = string
default = "RSA-OAEP-256"
}
variable "am_oauth2_client_idTokenEncryptionMethod" {
description = "idTokenEncryptionMethod"
type = string
default = "A128CBC-HS256"
}
variable "am_oauth2_client_idTokenPublicEncryptionKey" {
description = "The client idTokenPublicEncryptionKey"
type = string
default = null
}
variable "am_oauth2_client_authorizationResponseEncryptionMethod" {
description = "The client authorizationResponseEncryptionMethod"
type = string
default = null
}
variable "am_oauth2_client_authorizationResponseEncryptionAlgorithm" {
description = "The client authorizationResponseEncryptionAlgorithm"
type = string
default = null
}
variable "am_oauth2_client_mTLSCertificateBoundAccessTokens" {
description = "The client mTLSCertificateBoundAccessTokens"
type = bool
default = false
}
variable "am_oauth2_client_mTLSSubjectDN" {
description = "The client mTLSSubjectDN"
type = string
default = null
}
variable "am_oauth2_client_mTLSTrustedCert" {
description = "The client mTLSTrustedCert"
type = string
default = null
}
variable "am_oauth2_client_clientJwtPublicKey" {
description = "The client clientJwtPublicKey"
type = string
default = null
}
variable "am_oauth2_client_publicKeyLocation" {
description = "The client publicKeyLocation"
type = string
default = "jwks_uri"
validation {
condition = contains(["jwks_uri", "jwks", "x509"], var.am_oauth2_client_publicKeyLocation)
error_message = "Valid value (jwks_uri, jwks, x509)."
}
}
variable "am_oauth2_client_jwksUri" {
description = "The client jwksUri"
type = string
default = null
}
variable "am_oauth2_client_jwkSet" {
description = "The client jwkSet"
type = string
default = null
}
variable "am_oauth2_client_jwkStoreCacheMissCacheTime" {
description = "The client jwkStoreCacheMissCacheTime"
type = number
default = 60000
}
variable "am_oauth2_client_jwksCacheTimeout" {
description = "The client jwksCacheTimeout"
type = number
default = 3600000
}
### UMA
variable "am_oauth2_client_uma_claimsRedirectionUris" {
description = "The client uma claimsRedirectionUris"
type = list(string)
default = []
}
##
## Override
##
variable "am_oauth2_client_providerOverridesEnabled" {
description = "override OIDC Claims Script ID"
type = bool
default = false
}
variable "am_oauth2_client_override_oidcClaimsScript_id" {
description = "override oidcClaimsScript_id"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_accessTokenModificationScript_id" {
description = "override accessTokenModificationScript_id"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_remoteConsentServiceId" {
description = "Client Override remoteConsentServiceId"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_oidcMayActScript" {
description = "Client Override oidcMayActScript"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_accessTokenMayActScript" {
description = "Client Override oidcMayActScript"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_authorizeEndpointDataProviderScript" {
description = "Client Override authorizeEndpointDataProviderScript"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_validateScopeScript" {
description = "Client Override validateScopeScript"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_evaluateScopeScript" {
description = "Client Override evaluateScopeScript"
type = string
default = "[EMPTY]"
}
variable "am_oauth2_client_override_issueRefreshToken" {
description = "Client Override issueRefreshToken"
type = bool
default = true
}
variable "am_oauth2_client_override_clientsCanSkipConsent" {
description = "Client Override clientsCanSkipConsent"
type = bool
default = true
}
variable "am_oauth2_client_override_issueRefreshTokenOnRefreshedToken" {
description = "Client Override issueRefreshTokenOnRefreshedToken"
type = bool
default = true
}
variable "am_oauth2_client_override_statelessTokensEnabled" {
description = "Client Override statelessTokensEnabled"
type = bool
default = true
}
variable "am_oauth2_client_override_tokenEncryptionEnabled" {
description = "Client Override tokenEncryptionEnabled"
type = bool
default = false
}
variable "am_oauth2_client_override_enableRemoteConsent" {
description = "Client Override enableRemoteConsent"
type = bool
default = false
}
variable "am_oauth2_client_override_usePolicyEngineForScope" {
description = "Client Override usePolicyEngineForScope"
type = bool
default = false
}
variable "am_oauth2_client_override_scopesPolicySet" {
description = "Client Override scopesPolicySet"
type = string
default = ""
}
variable "am_oauth2_client_override_overrideableOIDCClaims" {
description = "Client Override overrideableOIDCClaims"
type = list(string)
default = []
}
variable "am_oauth2_client_override_evaluateScopeClass" {
description = "Client Override evaluateScopeClass"
type = string
default = "org.forgerock.oauth2.core.plugins.registry.DefaultScopeEvaluator"
}
variable "am_oauth2_client_override_validateScopeClass" {
description = "Client Override validateScopeClass"
type = string
default = "org.forgerock.oauth2.core.plugins.registry.DefaultScopeValidator"
}
variable "am_oauth2_client_override_authorizeEndpointDataProviderClass" {
description = "Client Override authorizeEndpointDataProviderClass"
type = string
default = "org.forgerock.oauth2.core.plugins.registry.DefaultEndpointDataProvider"
}
variable "am_oauth2_client_override_accessTokenModificationPluginType" {
description = "Client Override accessTokenModificationPluginType"
type = string
default = "PROVIDER"
validation {
condition = contains(["PROVIDER", "JAVA", "SCRIPTED"], var.am_oauth2_client_override_accessTokenModificationPluginType)
error_message = "Valid values are (PROVIDER, JAVA, SCRIPTED)."
}
}
variable "am_oauth2_client_override_validateScopePluginType" {
description = "Client Override validateScopePluginType"
type = string
default = "PROVIDER"
validation {
condition = contains(["PROVIDER", "JAVA", "SCRIPTED"], var.am_oauth2_client_override_validateScopePluginType)
error_message = "Valid values are (PROVIDER, JAVA, SCRIPTED)."
}
}
variable "am_oauth2_client_override_oidcClaimsPluginType" {
description = "Client Override oidcClaimsPluginType"
type = string
default = "PROVIDER"
validation {
condition = contains(["PROVIDER", "JAVA", "SCRIPTED"], var.am_oauth2_client_override_oidcClaimsPluginType)
error_message = "Valid values are (PROVIDER, JAVA, SCRIPTED)."
}
}
variable "am_oauth2_client_override_authorizeEndpointDataProviderPluginType" {
description = "Client Override authorizeEndpointDataProviderPluginType"
type = string
default = "PROVIDER"
validation {
condition = contains(["PROVIDER", "JAVA", "SCRIPTED"], var.am_oauth2_client_override_authorizeEndpointDataProviderPluginType)
error_message = "Valid values are (PROVIDER, JAVA, SCRIPTED)."
}
}
variable "am_oauth2_client_override_evaluateScopePluginType" {
description = "Client Override evaluateScopePluginType"
type = string
default = "PROVIDER"
validation {
condition = contains(["PROVIDER", "JAVA", "SCRIPTED"], var.am_oauth2_client_override_evaluateScopePluginType)
error_message = "Valid values are (PROVIDER, JAVA, SCRIPTED)."
}
}