diff --git a/playbooks/create-api-user.yml b/playbooks/create-api-user.yml new file mode 100644 index 0000000..96153b5 --- /dev/null +++ b/playbooks/create-api-user.yml @@ -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 + +...