mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-05-05 21:35:21 +02:00
53 lines
3.4 KiB
YAML
53 lines
3.4 KiB
YAML
# Helper Variables
|
|
|
|
# Helper Variables for administrator
|
|
_users_administrator_username: "{{ users.administrator.username | default('administrator') }}"
|
|
_users_administrator_email: "{{ users.administrator.email | default(_users_administrator_username ~ '@' ~ primary_domain) }}"
|
|
|
|
# Helper Variables for bounce
|
|
_users_bounce_username: "{{ users.bounce.username | default('bounce') }}"
|
|
_users_bounce_email: "{{ users.bounce.email | default(_users_bounce_username ~ '@' ~ primary_domain) }}"
|
|
|
|
# Helper Variables for no-reply
|
|
_users_no_reply_username: "{{ users['no-reply'].username | default('no-reply') }}"
|
|
_users_no_reply_email: "{{ users['no-reply'].email | default(_users_no_reply_username ~ '@' ~ primary_domain) }}"
|
|
|
|
# Helper Variables for blackhole
|
|
_users_blackhole_username: "{{ users.blackhole.username | default('no-reply') }}"
|
|
_users_blackhole_email: "{{ users.blackhole.email | default(_users_blackhole_username ~ '@' ~ primary_domain) }}"
|
|
|
|
# Administrator
|
|
default_users:
|
|
|
|
# Credentials will be used as administration credentials for all applications and the system
|
|
administrator:
|
|
username: "{{_users_administrator_username}}" # Username of the administrator
|
|
email: "{{_users_administrator_email}}" # Email of the administrator
|
|
password: "{{ansible_become_password}}" # Example initialisation password needs to be set in inventory file
|
|
uid: 1001 # Posix User ID
|
|
gid: 1001 # Posix Group ID
|
|
is_admin: true # Define as admin user
|
|
|
|
# Account for Newsletter bouncing
|
|
bounce:
|
|
username: "{{ _users_bounce_username }}" # Bounce-handler account username
|
|
email: "{{ _users_bounce_email }}" # Email address for handling bounces
|
|
password: "{{ansible_become_password}}" # Example initialisation password needs to be set in inventory file
|
|
uid: 1002 # Posix User ID for bounce
|
|
gid: 1002 # Posix Group ID for bounce
|
|
|
|
# User to send System Emails from
|
|
no-reply:
|
|
username: "{{ _users_no_reply_username }}" # No-reply account username
|
|
email: "{{ _users_no_reply_email }}" # Email address for outgoing no-reply mails
|
|
password: "{{ansible_become_password}}" # Example initialisation password needs to be set in inventory file
|
|
uid: 1003 # Posix User ID for no-reply
|
|
gid: 1003 # Posix Group ID for no-reply
|
|
|
|
# Emails etc, what you send to this user will be forgetten
|
|
blackhole:
|
|
username: "{{ _users_blackhole_username }}" # Blackhole account username
|
|
email: "{{ _users_blackhole_email }}" # Email address to which emails can be send which well be forgetten
|
|
password: "{{ansible_become_password}}" # Example initialisation password needs to be set in inventory file
|
|
uid: 1004 # Posix User ID for bounce
|
|
gid: 1004 # Posix Group ID for bounce |