aboutsummaryrefslogtreecommitdiff
path: root/docs/README.md
diff options
context:
space:
mode:
authorspmfox <spmfox@foxwd.com>2025-07-30 18:19:35 -0400
committerspmfox <spmfox@foxwd.com>2025-07-30 18:19:35 -0400
commit073042cae96e01a5e5ecbe434f00ef3ebf86e9b8 (patch)
treedcd14640b3fb6d826a09ea1c5ae20e6d836f8ce2 /docs/README.md
parent167b3da9926db3a4f507533427b72933c008dee6 (diff)
changed ssh-key to ssh-keys, now supports adding multiple keysHEADmain
Diffstat (limited to 'docs/README.md')
-rw-r--r--docs/README.md12
1 files changed, 7 insertions, 5 deletions
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 <key here>
+ ssh_keys:
+ - ssh-rsa <key1>
+ - ssh-rsa <key2>
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 <key here>
+ ssh_keys:
+ - ssh-rsa <key1>
+ - ssh-rsa <key2>
packages:
- fish
redhat_user: "myrhsmuser"