Files
ansible-role-users/defaults/main.yml

20 lines
552 B
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2023 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: Apache-2.0
# Allow user to have no password, so login possible for everyone
allow_no_password: false
# Additional groups user will be added to.
user_groups: []
# Whether to add user to groups in `user_groups` without removing them from
# other groups.
groups_append: true
# Whether to generate an SSH key for the new user
generate_ssh_key: true
# SSH key type
ssh_key_type: ed25519
# Shell
shell: /bin/bash
# Home directory permissions
homedir_permissions: "0700"