19 lines
581 B
YAML
19 lines
581 B
YAML
---
|
|
# ------------------------------------------------------------------------------
|
|
# FILE: playbooks/deploy_authentik.yml
|
|
# DESCRIPTION: Deploys Authentik identity provider on guest-relations.
|
|
# Installs Docker and configures Authentik with PostgreSQL and Redis.
|
|
#
|
|
# USAGE:
|
|
# ansible-playbook -i inventory.yml playbooks/deploy_authentik.yml
|
|
# ------------------------------------------------------------------------------
|
|
|
|
- name: Deploy Authentik identity provider
|
|
hosts: authentik_server
|
|
become: true
|
|
|
|
roles:
|
|
- common
|
|
- docker-host
|
|
- authentik
|