Vendor Galaxy Roles and Collections
This commit is contained in:
parent
c1e1897cda
commit
2aed20393f
3553 changed files with 387444 additions and 2 deletions
|
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
# Copyright (C) 2018 Maciej Delmanowski <drybjed@gmail.com>
|
||||
# Copyright (C) 2020 Gabriel Lewertowski <gabriel.lewertowski@trust-in-soft.com>
|
||||
# Copyright (C) 2018-2023 DebOps <https://debops.org/>
|
||||
# SPDX-License-Identifier: GPL-3.0-only
|
||||
|
||||
- name: Configure Icinga database
|
||||
collections: [ 'debops.debops', 'debops.roles01',
|
||||
'debops.roles02', 'debops.roles03' ]
|
||||
hosts: [ 'debops_service_icinga_db' ]
|
||||
become: True
|
||||
|
||||
environment: '{{ inventory__environment | d({})
|
||||
| combine(inventory__group_environment | d({}))
|
||||
| combine(inventory__host_environment | d({})) }}'
|
||||
|
||||
roles:
|
||||
|
||||
- role: mariadb
|
||||
tags: [ 'role::mariadb', 'skip::mariadb' ]
|
||||
mariadb__dependent_databases: '{{ icinga_db__mariadb__dependent_databases }}'
|
||||
mariadb__dependent_users: '{{ icinga_db__mariadb__dependent_users }}'
|
||||
when: icinga_db__type == 'mariadb'
|
||||
|
||||
- role: postgresql
|
||||
tags: [ 'role::postgresql', 'skip::postgresql' ]
|
||||
postgresql__dependent_roles: '{{ icinga_db__postgresql__dependent_roles }}'
|
||||
postgresql__dependent_databases: '{{ icinga_db__postgresql__dependent_databases }}'
|
||||
when: icinga_db__type == 'postgresql'
|
||||
|
||||
- role: icinga_db
|
||||
tags: [ 'role::icinga_db', 'skip::icinga_db' ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue