mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	- Converted group_vars/all/13_ldap.yml from lower-case to ALL-CAPS nested keys. - Updated all roles, tasks, templates, and filter_plugins to reference LDAP.* instead of ldap.*. - Fixed Keycloak JSON templates to properly quote Jinja variables. - Adjusted svc-db-openldap filter plugins and unit tests to handle new LDAP structure. - Updated integration test to only check uniqueness of TOP-LEVEL ALL-CAPS constants, ignoring nested keys. See: https://chatgpt.com/share/68b01017-efe0-800f-a508-7d7e2f1c8c8d
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # General
 | |
| application_id:                 "web-app-gitea"
 | |
| database_type:                  "mariadb"
 | |
| 
 | |
| # Docker
 | |
| container_port:                 "{{ applications | get_app_conf(application_id, 'docker.services.gitea.port') }}"
 | |
| docker_compose_flush_handlers:  true
 | |
| 
 | |
| # Gitea
 | |
| GITEA_LDAP_AUTH_ARGS:
 | |
|   - '--name "LDAP ({{ PRIMARY_DOMAIN }})"'
 | |
|   - '--host "{{ LDAP.SERVER.DOMAIN }}"'
 | |
|   - '--port {{ LDAP.SERVER.PORT }}'
 | |
|   - '--security-protocol "{{ LDAP.SERVER.SECURITY | trim or "unencrypted" }}"'
 | |
|   - '--bind-dn "{{ LDAP.DN.ADMINISTRATOR.DATA }}"'
 | |
|   - '--bind-password "{{ LDAP.BIND_CREDENTIAL }}"'
 | |
|   - '--user-search-base "{{ LDAP.DN.OU.USERS }}"'
 | |
|   - '--user-filter  "(&(objectClass=inetOrgPerson)(uid=%s))"'
 | |
|   - '--username-attribute "{{ LDAP.USER.ATTRIBUTES.ID }}"'
 | |
|   - '--firstname-attribute "{{ LDAP.USER.ATTRIBUTES.FIRSTNAME }}"'
 | |
|   - '--surname-attribute "{{ LDAP.USER.ATTRIBUTES.SURNAME }}"'
 | |
|   - '--email-attribute "{{ LDAP.USER.ATTRIBUTES.MAIL }}"'
 | |
|   - '--public-ssh-key-attribute "{{ LDAP.USER.ATTRIBUTES.SSH_PUBLIC_KEY }}"'
 | |
|   - '--synchronize-users'
 | |
| GITEA_VERSION:    "{{ applications | get_app_conf(application_id, 'docker.services.gitea.version') }}"
 | |
| GITEA_IMAGE:      "{{ applications | get_app_conf(application_id, 'docker.services.gitea.image') }}"
 | |
| GITEA_CONTAINER:  "{{ applications | get_app_conf(application_id, 'docker.services.gitea.name') }}"
 | |
| GITEA_VOLUME:     "{{ applications | get_app_conf(application_id, 'docker.volumes.data') }}"
 | |
| GITEA_USER:       "git"
 | |
| GITEA_CONFIG:     "/data/gitea/conf/app.ini"
 |