community.vmware.vca_vapp – Manages vCloud Air vApp instances.¶
Note
This plugin is part of the community.vmware collection (version 1.9.0).
To install it use: ansible-galaxy collection install community.vmware
.
To use it in a playbook, specify: community.vmware.vca_vapp
.
DEPRECATED¶
- Removed in
major release after 2022-06-01
- Why
Module depends upon deprecated version of Pyvcloud library.
- Alternative
Use https://github.com/vmware/ansible-module-vcloud-director instead.
Synopsis¶
This module will actively managed vCloud Air vApp instances. Instances can be created and deleted as well as both deployed and undeployed.
Requirements¶
The below requirements are needed on the host that executes this module.
pyvcloud <= 18.2.2
Parameters¶
Notes¶
Note
VMware sold their vCloud Air service in Q2 2017.
VMware made significant changes to the pyvcloud interface around this time. The
vca_vapp
module relies on now deprecated code.Mileage with
vca_vapp
may vary as vCloud Director APIs advance.A viable alternative maybe https://github.com/vmware/ansible-module-vcloud-director
Examples¶
- name: Creates a new vApp in a VCA instance
community.vmware.vca_vapp:
vapp_name: tower
state: present
template_name: 'Ubuntu Server 12.04 LTS (amd64 20150127)'
vdc_name: VDC1
instance_id: '<your instance id here>'
username: '<your username here>'
password: '<your password here>'
delegate_to: localhost
Status¶
This module will be removed in a major release after 2022-06-01. [deprecated]
For more information see DEPRECATED.
Authors¶
Peter Sprygada (@privateip)