You've built the jump box image, now you need to build out a user access plan.
You have multiple options on how you manage your jump box users. Because jump box user management isn't the focus of the walkthrough, we'll stick with a relatively straightforward mechanism to keep you moving. However, generally you'll want to ensure you're using a solution like Microsoft Entra ID with OpenSSH so that you can take advantage of Microsoft Entra Conditional Access policies, JIT permissions, and so on. Employ whatever user governance mechanism will help you achieve your desired compliance outcome and still being able to easily on- and off-board users as your ops teams' needs and personnel change.
📓 For more information, see Azure Architecture Center guidance for PCI DSS 3.2.1 Requirement 7 and 8 in AKS.
Following these steps, you'll end up with an SSH public-key-based solution that uses cloud-init. The results will be captured in jumpBoxCloudInit.yml
which you will later convert to Base64 for use in your cluster's ARM template.
-
Open
jumpBoxCloudInit.yml
in your preferred editor. -
Inspect the two users examples in that file. You need one user defined in this file to complete this walk through (more than one user is fine, but not necessary). 🛑
name:
set to whatever you login account name you wish. (You'll need to remember this later.)sudo:
- Suggested to leave atFalse
. This means the user cannotsudo
. If this user needs sudo access, use sudo rule strings to restrict what sudo access is allowed.lock_passwd:
- Leave atTrue
. This disables password login, and as such the user can only connect via an SSH authorized key. Your jump box should enforce this as well on its SSH daemon. If you deployed using the image builder in the prior step, it does this enforcement there as well.- In
ssh-authorized-keys
replace the<public-ssh-rsa-for-...>
placeholder with an actual public ssh public key for the user. This must be an RSA key of at least 2048 bits and must be secured with a passphrase. This key will be added to that user's~/.ssh/authorized_keys
file on the jump box via the cloud-init bootstrap process.
-
Generate an SSH key pair to use in this walkthrough.
ssh-keygen -t rsa -b 4096 -f opsuser01.key
Enter a passphrase when requested (do not leave empty) and note where the public and private key file was saved. The public key file contents (
opsuser01.key.pub
in the example above) will be used in thejumpBoxCloudInit.yml
file. You'll need the username, the private key file (opsuser01.key
), and passphrase later in this walkthrough.On Windows, as an alternative to Bash in WSL, you can use a solution like PuTTYGen found in the PuTTY installer.
Azure also has an SSH Public Key resources type that allows you to generate SSH keys and keep public keys available as a managed resource.
-
Run the following command to overwrite the
jumpBoxCloudInit.yml
file with a new user configuration that uses the SSH key you generated:cat <<EOF > jumpBoxCloudInit.yml - #cloud-config users: - default - name: opsuser01 sudo: False lock_passwd: True ssh-authorized-keys: - $(cat opsuser01.key.pub) EOF
Alternatively, you can manually modify the existing
jumpBoxCloudInit.yml
file to add/remove users and ssh authorized keys. -
Optional 🛑. Remove the
- default
line to remove the default admin user from the jump box.If you leave the
- default
line in the file, then the default admin user (defined in the cluster's ARM template as pseudo-random name to discourage usage) will also exist on this jump box. We do not provide any instructions on setting up this default user to be a valid user you can access, and as such you might wish to simply remove it from the jump box. That user has unrestricted sudo access, by default. Unfortunately, you cannot directly deploy the jump box infrastructure with this user removed, so removing it via cloud-init is a common resolution -- by not including- default
in this file. -
You can commit this file change if you wish, as the only values in here are public keys, which are not secrets. Never commit any private SSH keys.