proxmox-ansible/playbooks/create-api-user.yml

13 lines
234 B
YAML
Raw Normal View History

2024-01-21 19:17:38 +00:00
---
# * This playbook will use the root user account that
# * has an ssh key to create a new user for API access
- name: Create Proxmox API User
gather_facts: false
hosts: proxmox_hosts
roles:
- role: create-api-user
...