We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed32c4 commit b99945cCopy full SHA for b99945c
provision/ansible/roles/user/tasks/main.yml
@@ -1,11 +1,16 @@
1
- include_vars: /vagrant/vm.yml
2
3
-- name: Setup ssh key (from github)
+- name: Setup ssh key (from github, authorized keys)
4
include: github-ssh-key.yml
5
when: githubUser is defined
6
tags:
7
- bootstrap
8
9
+- name: Generate ssh key
10
+ include: ssh-key.yml
11
+ tags:
12
+ - bootstrap
13
+
14
- name: Setup ssh config autobuilding
15
include: ssh-conf-autobuild.yml
16
provision/ansible/roles/user/tasks/ssh-key.yml
@@ -0,0 +1,2 @@
+ user: name=vagrant generate_ssh_key=yes ssh_key_bits=4096 ssh_key_file=.ssh/id_rsa
0 commit comments