mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-21 20:59:10 +00:00
add module keycloak_authentication_v2 (#11557)
* add module keycloak_authentication_v2
* skip sanity checks, because the run into a recursion
* 11556 fix documentation
* 11556 limit the depth of nested flows to 4
* 11556 code cleanup
* 11556 code cleanup - add type hints
* 11556 add keycloak_authentication_v2 to meta/runtime.yml
* 11556 code cleanup - remove custom type hints
* 11556 code cleanup - none checks
* Update plugins/modules/keycloak_authentication_v2.py
* Update plugins/modules/keycloak_authentication_v2.py
* 11556 code cleanup - remove document starts
* 11556 cleanup
* 11556 cleanup
---------
(cherry picked from commit a69f7e60b4)
Co-authored-by: thomasbargetz <thomas.bargetz@gmail.com>
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Thomas Bargetz <thomas.bargetz@rise-world.com>
14 lines
No EOL
527 B
YAML
14 lines
No EOL
527 B
YAML
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
keycloak_version: latest
|
|
keycloak_port: 8080
|
|
|
|
url: "http://localhost:{{ keycloak_port }}/auth"
|
|
admin_realm: master
|
|
admin_user: admin
|
|
admin_password: password
|
|
realm: myrealm
|
|
|
|
keycloak_no_otp_required_pattern_orinale: "X-Forwarded-For: 10\\.[0-9\\.:]+"
|
|
keycloak_no_otp_required_pattern_modifed: "X-Original-Forwarded-For: 10\\.[0-9\\.:]+" |