Create the lowest permission SSH user account
#create user
useradd -M -s /sbin/nologin -n username
#modify the password
passwd username
#remove the user
userdel -r username
#create user
useradd -M -s /sbin/nologin -n username
#modify the password
passwd username
#remove the user
userdel -r username