Thanks for reaching out.
Here is a simple playbook and role to create a network
playbook:
- hosts: xxxx
roles:
- network
role (main.yml)
---
- name: Create Docker Web network
docker_network:
name: "{{ docker_network_web }}"
I have added TLS related environment variable on the host permanently but where and how do I add those references on the task.
P.S. I did add TLS parameters to my role and that works but I'm looking for an alternative solution instead of modifying 10 different roles, is there a single place where these variables can be referenced?
Thanks,
Bhagyashri