- move ansible project within infra - introduce terraform/opentofu for proxmox VM management
		
			
				
	
	
		
			12 lines
		
	
	
		
			213 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			213 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: Update apt cache
 | |
|   ansible.builtin.apt:
 | |
|     update_cache: yes
 | |
|   become: true
 | |
| 
 | |
| - name: Install necessary packages
 | |
|   ansible.builtin.apt:
 | |
|     name: "{{ apt_packages }}"
 | |
|     state: present
 | |
|   become: true
 |