In ansible 2.8 the - character isn't supposed to be valid in group names. While we could override this, might has well just bite the bullet and change it. So, just switch all group names to use _ instead of - Signed-off-by: Kevin Fenzi <kevin@scrye.com>
35 lines
862 B
Text
35 lines
862 B
Text
---
|
|
# Define resources for this group of hosts here.
|
|
lvm_size: 20000
|
|
mem_size: 1024
|
|
num_cpus: 2
|
|
|
|
wsgi_fedmsg_service: fedora_elections
|
|
wsgi_procs: 2
|
|
wsgi_threads: 2
|
|
|
|
tcp_ports: [ 80 ]
|
|
|
|
# Neeed for rsync from log01 for logs.
|
|
custom_rules: [ '-A INPUT -p tcp -m tcp -s 10.5.126.13 --dport 873 -j ACCEPT', '-A INPUT -p tcp -m tcp -s 192.168.1.59 --dport 873 -j ACCEPT' ]
|
|
|
|
fas_client_groups: sysadmin-noc,sysadmin-web,fi-apprentice,sysadmin-veteran
|
|
|
|
freezes: false
|
|
|
|
# These are consumed by a task in roles/fedmsg/base/main.yml
|
|
fedmsg_certs:
|
|
- service: shell
|
|
owner: root
|
|
group: sysadmin
|
|
can_send:
|
|
- logger.log
|
|
- service: fedora_elections
|
|
owner: root
|
|
group: apache
|
|
can_send:
|
|
- fedora_elections.candidate.delete
|
|
- fedora_elections.candidate.edit
|
|
- fedora_elections.candidate.new
|
|
- fedora_elections.election.edit
|
|
- fedora_elections.election.new
|