From 073042cae96e01a5e5ecbe434f00ef3ebf86e9b8 Mon Sep 17 00:00:00 2001 From: spmfox Date: Wed, 30 Jul 2025 18:19:35 -0400 Subject: changed ssh-key to ssh-keys, now supports adding multiple keys --- docs/README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'docs/README.md') diff --git a/docs/README.md b/docs/README.md index de60ff9..05c3569 100644 --- a/docs/README.md +++ b/docs/README.md @@ -23,7 +23,7 @@ Below is a table describing each variable, and which Ansible role the variable i | ```packages``` | | | X | | | **List** of packages to be installed on the new VM | | ```user``` | | | X | | | User to be created on the new VM | | ```root_password``` | | X | X | Kickstart - Random | | Sets root password in Kickstart (uses random if not specified), can be used to communicate with new VM if no SSH key is defined | -| ```ssh_key``` | | X | | | | This key is put into the Kickstart template for the root user and the regular user (if defined) - if not defined, PermitRootLogin is used in Kickstart | +| ```ssh_keys``` | | X | | | | List of keys to be put into the Kickstart template for the root user and the regular user (if defined) - if not defined, PermitRootLogin is used in Kickstart | | ```shell``` | | | X | | | Set new user's shell to this shell, does not change the root user shell - does nothing if no regular user defined | | ```services``` | | | X | | | Services to enable on the new VM | ```redhat_user``` | | | X | | | Username to register/unregister new VM with Red Hat Subscription Manager | @@ -89,8 +89,9 @@ all: parent_dataset: "zfs-parent-dataset/zfs-child-dataset" user: "myuser" shell: "/usr/bin/fish" - ssh_key: | - ssh-rsa + ssh_keys: + - ssh-rsa + - ssh-rsa pre-packages: - epel-release packages: @@ -121,8 +122,9 @@ all: parent_dataset_mount: "/mnt/zfs-parent-dataset/zfs-child-dataset" user: "myuser" shell: "/usr/bin/fish" - ssh_key: | - ssh-rsa + ssh_keys: + - ssh-rsa + - ssh-rsa packages: - fish redhat_user: "myrhsmuser" -- cgit