add playbook for creating api user

This commit is contained in:
c0de 2024-01-21 14:17:38 -05:00
parent 3a23b5d7be
commit b36b672c18
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
---
# * 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
...