From aa011c6272e76fe6b5edfe294b24bbf4b98dc4b1 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO <ynerant@crans.org> Date: Mon, 29 Mar 2021 12:17:37 +0200 Subject: [PATCH] [galene] Deploy nginx and certbot Signed-off-by: Yohann D'ANELLO <ynerant@crans.org> --- plays/galene.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 plays/galene.yml diff --git a/plays/galene.yml b/plays/galene.yml new file mode 100755 index 00000000..a60aaf31 --- /dev/null +++ b/plays/galene.yml @@ -0,0 +1,11 @@ +#!/usr/bin/env ansible-playbook +--- +- hosts: galene + vars: + certbot: "{{ loc_certbot | default(glob_certbot | default([])) }}" + galene: "{{ glob_galene | default({}) | combine(loc_galene | default({})) }}" + nginx: "{{ glob_nginx | default({}) | combine(service_nginx | default({})) | combine(loc_nginx | default({})) }}" + roles: + - certbot + - nginx + # - galene -- GitLab