mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	- Fixed incorrect handling of RBAC group configuration (moved from OIDC claims into dedicated RBAC variable set).
- Unified RBAC group usage across applications (LAM, pgAdmin, phpLDAPadmin, phpMyAdmin, YOURLS).
- Replaced old 'KEYCLOAK_OIDC_RBAC_SCOPE_NAME' with dedicated 'KEYCLOAK_RBAC_GROUP_*' variables.
- Updated OAuth2 Proxy configuration to use 'RBAC.GROUP.CLAIM'.
- Refactored Keycloak role task structure:
  * Renamed and reorganized task files for clarity ('_update.yml', '02_cleanup.yml', etc.).
  * Introduced meta and dependency handling separation.
- Cleaned up Keycloak config defaults and recaptcha placeholders.
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			854 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			854 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| docker:
 | |
|   services:
 | |
|     lam:
 | |
|       image:   ghcr.io/ldapaccountmanager/lam
 | |
|       version: latest
 | |
| oauth2_proxy:
 | |
|   application:                  application
 | |
|   port:                         80
 | |
|   allowed_groups:
 | |
|     - "{{ [RBAC.GROUP.NAME, 'web-app-lam-administrator'] | path_join }}"
 | |
| features:
 | |
|   matomo:                       true
 | |
|   css:                          true
 | |
|   desktop:              true
 | |
|   ldap:                         true
 | |
|   oauth2:                       true
 | |
|   logout:                       true
 | |
| server:
 | |
|   csp:
 | |
|     flags:
 | |
|       style-src:
 | |
|         unsafe-inline:            true
 | |
|       script-src-elem:
 | |
|         unsafe-inline:            true
 | |
|         unsafe-eval:              true
 | |
|       script-src:
 | |
|         unsafe-inline:            true
 | |
|   domains:
 | |
|     aliases:
 | |
|       - "ldap.{{ PRIMARY_DOMAIN }}"
 | |
|     canonical:
 | |
|       - lam.{{ PRIMARY_DOMAIN }}
 | |
| 
 |