22 lines
617 B
YAML
22 lines
617 B
YAML
|
|
- name: Create new container with minimal options
|
||
|
|
community.general.proxmox:
|
||
|
|
vmid: 100
|
||
|
|
node: uk-mc02
|
||
|
|
api_user: root@pam
|
||
|
|
api_password: 1q2w3e
|
||
|
|
api_host: node1
|
||
|
|
password: 123456
|
||
|
|
hostname: example.org
|
||
|
|
ostemplate: 'local:vztmpl/ubuntu-14.04-x86_64.tar.gz'
|
||
|
|
|
||
|
|
- name: Create new container automatically selecting the next available vmid.
|
||
|
|
community.general.proxmox:
|
||
|
|
node: 'uk-mc02'
|
||
|
|
api_user: 'root@pam'
|
||
|
|
api_password: '1q2w3e'
|
||
|
|
api_host: 'node1'
|
||
|
|
password: '123456'
|
||
|
|
hostname: 'example.org'
|
||
|
|
ostemplate: 'local:vztmpl/ubuntu-14.04-x86_64.tar.gz'
|
||
|
|
|