├── LICENSE ├── README.md ├── ansible.cfg ├── inventory ├── playbook.yml └── roles ├── openVPNClient ├── tasks │ └── main.yml └── vars │ └── main.yml └── openVPNServer └── tasks └── main.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiteshSharma/OpenVPNAnsible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiteshSharma/OpenVPNAnsible/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiteshSharma/OpenVPNAnsible/HEAD/ansible.cfg -------------------------------------------------------------------------------- /inventory: -------------------------------------------------------------------------------- 1 | [openVPN] 2 | 18.223.108.182 -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiteshSharma/OpenVPNAnsible/HEAD/playbook.yml -------------------------------------------------------------------------------- /roles/openVPNClient/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiteshSharma/OpenVPNAnsible/HEAD/roles/openVPNClient/tasks/main.yml -------------------------------------------------------------------------------- /roles/openVPNClient/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | client_name: "mitesh" 3 | destination_key: "{{ playbook_dir }}" -------------------------------------------------------------------------------- /roles/openVPNServer/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiteshSharma/OpenVPNAnsible/HEAD/roles/openVPNServer/tasks/main.yml --------------------------------------------------------------------------------