summaryrefslogtreecommitdiff
path: root/playbooks/bootstrap.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/bootstrap.yaml')
-rw-r--r--playbooks/bootstrap.yaml5
1 files changed, 5 insertions, 0 deletions
diff --git a/playbooks/bootstrap.yaml b/playbooks/bootstrap.yaml
index 3f5f872..230dfde 100644
--- a/playbooks/bootstrap.yaml
+++ b/playbooks/bootstrap.yaml
@@ -27,6 +27,7 @@
- "{{ admin_group }}"
- "{{ automation_group }}"
- "{{ deploy_group }}"
+ - "{{ git_group }}"
- name: Create users
ansible.builtin.user:
@@ -46,6 +47,9 @@
- user: "{{ deploy_user }}"
password: "{{ deploy_password }}"
groups: "{{ deploy_group }}"
+ - user: "{{ git_user }}"
+ password: "{{ git_password }}"
+ groups: "{{ git_group }}"
no_log: true
- name: Add ssh keys
@@ -57,6 +61,7 @@
- "{{ admin_user }}"
- "{{ automation_user }}"
- "{{ deploy_user }}"
+ - "{{ git_user }}"
- name: Apply ssh changes
ansible.builtin.meta: flush_handlers