Skip to content

Commit

Permalink
Update types/oidcsettings UserInfoRefreshInterval to allow Integers a…
Browse files Browse the repository at this point in the history
…gain
  • Loading branch information
gcoxmoz committed Nov 9, 2024
1 parent c4310ce commit b3a3c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/oidcsettings.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Optional['Scope'] => Pattern[/^\"?[A-Za-z0-9\-\._\s]+\"?$/],
Optional['AuthRequestParams'] => Pattern[/^[A-Za-z0-9\-\._%]+=[A-Za-z0-9\-\._%]+(&[A-Za-z0-9\-\._%]+=[A-Za-z0-9\-\._%]+)*$/],
Optional['SSLValidateServer'] => Apache::OnOff ,
Optional['UserInfoRefreshInterval'] => Pattern[/^[0-9]+(\s+(logout_on_error|authenticate_on_error|502_on_error))?$/],
Optional['UserInfoRefreshInterval'] => Variant[Integer[-1], Pattern[/^[0-9]+(\s+(logout_on_error|authenticate_on_error|502_on_error))?$/]],
Optional['JWKSRefreshInterval'] => Integer[-1],
Optional['UserInfoTokenMethod'] => Enum['authz_header', 'post_param'],
Optional['ProviderAuthRequestMethod'] => Enum['GET', 'POST', 'PAR'],
Expand Down

0 comments on commit b3a3c0f

Please sign in to comment.