-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaybook.yml
36 lines (28 loc) · 900 Bytes
/
playbook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
- name: Configure Server
hosts: all
become: true
roles:
- role: geerlingguy.security
tags: system
vars:
security_sudoers_passwordless: "{{ [operations_control_user|default('control')] + operations_admin_users|default([]) }}"
security_ssh_allowed_users: "{{ [operations_control_user|default('control')] + [operations_platform_user|default('platform')] + operations_admin_users|default([]) }}"
- role: geerlingguy.github-users
tags: system
vars:
github_users: "{{ operations_admin_users | default([]) }}"
- name: "Configure Hosting: DDEV"
hosts: operations_host_ddev
become: true
roles:
- role: geerlingguy.docker
tags: system
- role: operations.users
tags: operations
- role: operations.ddev
tags: operations, ddev
- role: operations.runner
tags:
- operations
- runner