diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-07-17 15:40:59 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-07-17 15:40:59 +0200 |
| commit | 28d802e0ebcf6d192ac398a6b64be2760d7ba2a4 (patch) | |
| tree | 29daf2e814be989fbf8033ecf9353c8417e516bf /roles/cloudflared/tasks/main.yml | |
| parent | 22988554510dd5d76df4037cebe8e6662f4dbc61 (diff) | |
Add cloudflare tunnel configurations
Diffstat (limited to 'roles/cloudflared/tasks/main.yml')
| -rw-r--r-- | roles/cloudflared/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/cloudflared/tasks/main.yml b/roles/cloudflared/tasks/main.yml new file mode 100644 index 00000000..e4a3b36e --- /dev/null +++ b/roles/cloudflared/tasks/main.yml @@ -0,0 +1,7 @@ +--- +- name: "Skip if tunnel token not defined" + when: cloudflared_tunnel_token is not defined + ansible.builtin.meta: end_role + +- name: "Include OS-specific installation tasks" + ansible.builtin.include_tasks: "install-{{ ansible_facts['os_family'] | lower }}.yml" |
