forked from usegalaxy-eu/infrastructure-playbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.yml
33 lines (33 loc) · 941 Bytes
/
proxy.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
---
- name: Proxy
hosts: proxy
become: true
vars:
hostname: proxy.galaxyproject.eu
vars_files:
- group_vars/all.yml
- secret_group_vars/all.yml
collections:
- devsec.hardening
pre_tasks:
- name: Set default version of Python
alternatives:
name: python
path: /usr/bin/python3
roles:
# Starting configuration of the operating system
- role: usegalaxy_eu.handy.os_setup
vars:
enable_hostname: true
enable_powertools: true # geerlingguy.repo-epel role doesn't enable PowerTools repository
enable_grub: true
- geerlingguy.repo-epel # Install EPEL repository
- usegalaxy-eu.autoupdates # keep all of our packages up to date
- influxdata.chrony # Keep our time in sync.
- usegalaxy-eu.dynmotd
# Applications
- galaxyproject.nginx
- dj-wasabi.telegraf
# hardening
- os_hardening
- ssh_hardening