-
I have a 3 node PVE cluster in HA and Ceph storage shared across all the nodes. I have a Debian12 cloud init template in my node PVE001. I am instructing terraform to deploy machines in specific nodes (pve001, 002 & 003) The machines deployed in pve001 are correct but when it tries to deploy one in pve002 or pve003 i get this error
this is my main.tf and I have run out of Ideas as why is this happening. Manual cloning works perfectly
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @uchris13 👋🏼 You may need to specify ...
clone {
vm_id = 9001
node_name = "pve001"
}
... If blank then the provider assumes the source is on the same node as the clone. |
Beta Was this translation helpful? Give feedback.
Hey @uchris13 👋🏼
You may need to specify
node_name
of the source location in theclone
section, i.e.If blank then the provider assumes the source is on the same node as the clone.