User-administrator Role¶
Description: No description available
Variables¶
author: Kevin Veen-Birkenbach
description: Creates a dedicated administrator user for local administrative tasks, ensuring secure privilege escalation and proper system management. This role configures the administrator account, sets up the home directory, SSH settings, and grants sudo privileges with password authentication.
license: Infinito.Nexus NonCommercial License
license_url: https://s.infinito.nexus/license
company: Kevin Veen-Birkenbach
Consulting & Coaching Solutions https://www.veen.world
min_ansible_version: 2.9
platforms: [{‘name’: ‘Linux’, ‘versions’: [‘all’]}]
galaxy_tags: [‘user’, ‘administrator’, ‘security’, ‘sudo’, ‘ssh’, ‘configuration’]
repository: https://s.infinito.nexus/code
issue_tracker_url: https://s.infinito.nexus/issues
documentation: https://docs.infinito.nexus
README¶
Administrator User¶
Description¶
This role creates a dedicated administrator user for local administrative tasks. The administrator account is configured to require a password when executing sudo, ensuring secure privilege escalation. For security reasons, it is recommended to use this dedicated administrator user instead of the default root account.
SSH key management follows a single point of truth: keys must be
provided via users.administrator.authorized_keys (must contain at
least one SSH public key), and are deployed to the administrator’s
authorized_keys file.
Overview¶
Optimized for secure system management, this role performs the
following: - Creates an administrator user with a home directory. -
Configures proper permissions for the administrator’s home directory and
associated scripts. - Deploys SSH authorized_keys from
users.administrator.authorized_keys, leveraging
SSH best practices. -
Grants sudo privileges to the
administrator user with password authentication using a dedicated
sudoers file.
Purpose¶
The primary purpose of this role is to provide a secure and dedicated administrator account solely for running local administration tasks. This approach minimizes security risks associated with using the root account and enforces best practices in user privilege management.
Requiring at least one SSH public key ensures that the administrator account is always accessible via secure, key-based authentication and avoids insecure or unusable configurations.
Features¶
User Creation: Establishes an administrator user with a home directory and generated SSH keys.
Home Directory Configuration: Sets secure permissions on the administrator’s home directory and script folder.
SSH Authorized Keys: Deploys keys from
users.administrator.authorized_keys(SPOT-only, must contain at least one key).Sudo Privileges: Deploys a dedicated sudoers configuration to grant the administrator user sudo rights with password prompt.
Modular Integration: Integrates with common routines and roles to further enhance system security.