16 lines
359 B
YAML
Executable File
16 lines
359 B
YAML
Executable File
---
|
|
- name: Query Proxmox for existing LXCs
|
|
community.proxmox.proxmox_vm_info:
|
|
type: lxc
|
|
register: proxmox_lxcs
|
|
|
|
- name: Check if LXC with hostname already exists
|
|
ansible.builtin.set_fact:
|
|
lxc_exists: >-
|
|
{{
|
|
proxmox_lxcs.proxmox_vms
|
|
| selectattr('name', 'equalto', lxc_hostname)
|
|
| list
|
|
| length > 0
|
|
}}
|