From b36b672c185df7399dfe98fea37b28866fbf8d82 Mon Sep 17 00:00:00 2001 From: c0de Date: Sun, 21 Jan 2024 14:17:38 -0500 Subject: [PATCH] add playbook for creating api user --- playbooks/create-api-user.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 playbooks/create-api-user.yml 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 + +...