From f5c55745002efce56bd6a2e07e0674158e1a5725 Mon Sep 17 00:00:00 2001 From: Mitesh The Mouse <44154255+miteshget@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:24:43 +0530 Subject: [PATCH] adding userinfo (#8789) --- ansible/roles/nginx_with_cert/tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ansible/roles/nginx_with_cert/tasks/main.yml b/ansible/roles/nginx_with_cert/tasks/main.yml index 22cb989756f..79b874c35dd 100644 --- a/ansible/roles/nginx_with_cert/tasks/main.yml +++ b/ansible/roles/nginx_with_cert/tasks/main.yml @@ -76,4 +76,14 @@ name: nginx state: restarted + - name: print out user.info + agnosticd_user_info: + msg: | + nginx_web_url: {{ nginx_with_cert_hostname }} + + - name: Save user data + agnosticd_user_info: + data: + nginx_web_url: "{{ nginx_with_cert_hostname }}" + ...