From 43789a7af29a5c2a4117f2af8468c406f6330f57 Mon Sep 17 00:00:00 2001 From: Sandwich Date: Wed, 11 Mar 2026 04:12:48 +0100 Subject: [PATCH] docs: update hypervisor.host references to hypervisor.node --- README.md | 4 ++-- inventory_example.yml | 2 +- vars_example.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 303a561..9ae83e4 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ all: username: root@pam password: !vault | $ANSIBLE_VAULT... - host: pve01 + node: pve01 storage: local-lvm children: @@ -268,7 +268,7 @@ The first user's credentials are prompted interactively via `vars_prompt` unless | `url` | string | -- | API host (Proxmox/VMware) | | `username` | string | -- | API username | | `password` | string | -- | API password | -| `host` | string | -- | Proxmox node name | +| `node` | string | -- | Target compute node (Proxmox node / VMware ESXi host; mutually exclusive with `cluster` on VMware) | | `storage` | string | -- | Storage identifier (Proxmox/VMware) | | `datacenter` | string | -- | VMware datacenter | | `cluster` | string | -- | VMware cluster | diff --git a/inventory_example.yml b/inventory_example.yml index c17a9d2..944cd4a 100644 --- a/inventory_example.yml +++ b/inventory_example.yml @@ -6,7 +6,7 @@ all: url: "pve01.example.com" username: "root@pam" password: "CHANGE_ME" - host: "pve01" + node: "pve01" storage: "local-lvm" boot_iso: "local:iso/archlinux-x86_64.iso" children: diff --git a/vars_example.yml b/vars_example.yml index 59c3871..ee5aa02 100644 --- a/vars_example.yml +++ b/vars_example.yml @@ -7,7 +7,7 @@ hypervisor: url: "pve01.example.com" username: "root@pam" password: "CHANGE_ME" - host: "pve01" + node: "pve01" storage: "local-lvm" datacenter: "dc01" cluster: "cluster01"