Skip to content

Commit

Permalink
Remove incorrect default() in create playbook
Browse files Browse the repository at this point in the history
Fix a syntax error in the create playbook introduced in commit 1f5514d
(Add options to add a vm to a pool and predefine the cloned vmid).
  • Loading branch information
meffie committed May 2, 2024
1 parent f6c6e71 commit a6520d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/molecule_proxmox/playbooks/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
name: "{{ p.name }}"
node: "{{ options.node }}"
timeout: "{{ options.timeout | d(omit) }}"
pool: "{{ d(options.pool) | d(omit) }}"
pool: "{{ options.pool | d(omit) }}"
newid: "{{ p.newid | d(p.newid, true) | d(omit, true) }}"
loop: "{{ molecule_yml.platforms }}"
loop_control:
Expand Down

0 comments on commit a6520d3

Please sign in to comment.