moved ssh to cert based

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-03-25 01:09:08 +01:00
parent 924e4a2f92
commit 56f058c254
21 changed files with 160 additions and 87 deletions

View File

@@ -1,7 +1,7 @@
---
- name: Set up Servers
hosts: docker_host
gather_facts: yes
gather_facts: true
vars_files:
- secrets.yml
roles:

View File

@@ -1,7 +1,7 @@
---
- name: Set up reverse proxy for docker
hosts: docker_lb
gather_facts: yes
gather_facts: true
vars_files:
- secrets.yml
roles:

5
playbooks/docker.yml Normal file
View File

@@ -0,0 +1,5 @@
---
- name: Setup Docker Hosts
ansible.builtin.import_playbook: docker-host.yml
- name: Setup Docker load balancer
ansible.builtin.import_playbook: docker-lb.yml

10
playbooks/proxmox.yml Normal file
View File

@@ -0,0 +1,10 @@
---
- name: Run proxmox vm playbook
hosts: proxmox
gather_facts: true
vars_files:
- secrets.yml
roles:
- role: proxmox_vm
tags:
- proxmox_vm