File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 225
225
dest : " {{ ansible_env.HOME }}/.ssh/id_rsa"
226
226
mode : " 0600"
227
227
228
+ - name : Ensure additional public keys are authorised
229
+ ansible.posix.authorized_key :
230
+ user : " {{ ansible_user }}"
231
+ key : " {{ item }}"
232
+ loop : " {{ extra_ssh_public_keys }}"
233
+
228
234
- name : Ensure OpenStack Config repository is present
229
235
ansible.builtin.git :
230
236
repo : " {{ openstack_config_repo }}"
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ vault_password_path: "~/vault.password"
29
29
30
30
ssh_key_path :
31
31
32
+ # A list of additional SSH public keys to authorise on the Ansible control host.
33
+ extra_ssh_public_keys : []
34
+
32
35
ansible_ssh_private_key_file : " {{ ssh_key_path }}"
33
36
34
37
vxlan_vni :
You can’t perform that action at this time.
0 commit comments