mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # Adapt the values in your inventory file
 | |
| defaults_service_provider:
 | |
|   type:             "legal"                                                       # Accepted Values: natural, legal
 | |
|   company:
 | |
|     titel:          "{{ SOFTWARE_NAME }} by Kevin Veen-Birkenbach"
 | |
|     slogan:         "{{ SOFTWARE_NAME }} — Empowering a Sovereign Digital Future."
 | |
|     address:
 | |
|       street:       "Binary Avenue 01"
 | |
|       city:         "Cybertown"
 | |
|       postal_code:  "00001"
 | |
|       country:      "Nexusland"
 | |
|     logo:           "{{ applications['web-svc-asset'].url ~ '/img/logo.png' }}"
 | |
|   platform:    
 | |
|     titel:          "{{ SOFTWARE_NAME }}"
 | |
|     subtitel:       "One login. Infinite applications."
 | |
|     logo:           "{{ applications['web-svc-asset'].url ~ '/img/logo.png' }}"
 | |
|     favicon:        "{{ applications['web-svc-asset'].url ~ '/img/favicon.ico' }}"
 | |
|   contact:
 | |
|     web-app-bluesky: >-
 | |
|       {{ ('@' ~ users.contact.username ~ '.' ~ domains['web-app-bluesky'].api)
 | |
|          if 'web-app-bluesky' in group_names else '' }}
 | |
|     email:          "{{ users.contact.username ~ '@' ~ PRIMARY_DOMAIN if 'web-app-mailu' in group_names else '' }}"
 | |
|     mastodon:       "{{ '@' ~ users.contact.username ~ '@' ~ domains | get_domain('web-app-mastodon') if 'web-app-mastodon' in group_names else '' }}"
 | |
|     matrix:         "{{ '@' ~ users.contact.username ~ ':' ~ applications | get_app_conf('web-app-matrix', 'server_name') if 'web-app-matrix' in group_names else '' }}"
 | |
|     peertube:       "{{ '@' ~ users.contact.username ~ '@' ~ domains | get_domain('web-app-peertube') if 'web-app-peertube' in group_names else '' }}"
 | |
|     pixelfed:       "{{ '@' ~ users.contact.username ~ '@' ~ domains | get_domain('web-app-pixelfed') if 'web-app-pixelfed' in group_names else '' }}"
 | |
|     phone:          "+0 000 000 404"
 | |
|     wordpress:      "{{ '@' ~ users.contact.username ~ '@' ~ domains | get_domain('web-app-wordpress') if 'web-app-wordpress' in group_names else '' }}"
 | |
| 
 | |
|   legal:
 | |
|     editorial_responsible:  "Johannes Gutenberg"
 | |
|     source_code:            "https://s.{{ SOFTWARE_NAME | lower }}/code"
 | |
|     imprint:                "{{ domains | get_url('web-svc-html', WEB_PROTOCOL) }}/imprint.html" |