ngine_io.cloudstack.cs_volume module – Manages volumes on Apache CloudStack based clouds.
Note
This module is part of the ngine_io.cloudstack collection (version 2.5.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install ngine_io.cloudstack.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: ngine_io.cloudstack.cs_volume.
New in ngine_io.cloudstack 0.1.0
Synopsis
- Create, destroy, attach, detach, extract or upload volumes. 
Requirements
The below requirements are needed on the host that executes this module.
- python >= 2.6 
- cs >= 0.9.0 
Parameters
| Parameter | Comments | 
|---|---|
| Account the volume is related to. | |
| HTTP method used to query the API endpoint. If not given, the  Choices: 
 | |
| API key of the CloudStack API. If not given, the  | |
| Secret key of the CloudStack API. If not set, the  | |
| HTTP timeout in seconds. If not given, the  Default:  | |
| URL of the CloudStack API e.g. https://cloud.example.com/client/api. If not given, the  | |
| Verify CA authority cert file. If not given, the  | |
| Custom id to the resource. Allowed to Root Admins only. | |
| ID of the device on a VM the volume is attached to. Only considered if state is  | |
| Name of the disk offering to be used. Required one of disk_offering, snapshot if volume is not already state=present. | |
| Whether to display the volume to the end user or not. Allowed to Root Admins only. Choices: 
 | |
| Name of the domain the volume to be deployed in. | |
| Force removal of volume even it is attached to a VM. Considered on state=absent only. Choices: 
 | |
| The format for the volume. Only considered if state=uploaded. Choices: 
 | |
| Max iops | |
| Min iops | |
| Mode for the volume extraction. Only considered if state=extracted. Choices: 
 | |
| Name of the volume. name can only contain ASCII letters. | |
| Poll async jobs until job has finished. Choices: 
 | |
| Name of the project the volume to be deployed in. | |
| Whether to allow to shrink the volume. Choices: 
 | |
| Size of disk in GB | |
| The snapshot name for the disk volume. Required one of disk_offering, snapshot if volume is not already state=present. | |
| State of the volume. Choices: 
 | |
| List of tags. Tags are a list of dictionaries having keys key and value. To delete all tags, set a empty list e.g. tags: []. | |
| URL to which the volume would be extracted on state=extracted or the URL where to download the volume on state=uploaded. Only considered if state is  | |
| If  If not given, the  This should only be used on personally controlled sites using self-signed certificates. Choices: 
 | |
| Name of the virtual machine to attach the volume to. | |
| Name of the zone in which the volume should be deployed. | 
Notes
Note
- A detailed guide about cloudstack modules can be found in the CloudStack Cloud Guide. 
- This module supports check mode. 
Examples
- name: create volume within project and zone with specified storage options
  ngine_io.cloudstack.cs_volume:
    name: web-vm-1-volume
    project: Integration
    zone: ch-zrh-ix-01
    disk_offering: PerfPlus Storage
    size: 20
- name: create/attach volume to instance
  ngine_io.cloudstack.cs_volume:
    name: web-vm-1-volume
    zone: zone01
    disk_offering: PerfPlus Storage
    size: 20
    vm: web-vm-1
    state: attached
- name: detach volume
  ngine_io.cloudstack.cs_volume:
    name: web-vm-1-volume
    zone: zone01
    state: detached
- name: remove volume
  ngine_io.cloudstack.cs_volume:
    name: web-vm-1-volume
    zone: zone01
    state: absent
- name: Extract DATA volume to make it downloadable
  ngine_io.cloudstack.cs_volume:
    state: extracted
    name: web-vm-1-volume
    zone: zone01
  register: data_vol_out
- name: Create new volume by downloading source volume
  ngine_io.cloudstack.cs_volume:
    state: uploaded
    name: web-vm-1-volume-2
    zone: zone01
    format: VHD
    url: "{{ data_vol_out.url }}"
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| Date of the volume was attached. Returned: success Sample:  | |
| Date of the volume was created. Returned: success Sample:  | |
| Id of the device on user vm the volume is attached to (not returned when detached) Returned: success Sample:  | |
| Display name of the volume. Returned: success Sample:  | |
| Domain the volume belongs to Returned: success Sample:  | |
| Group the volume belongs to Returned: success Sample:  | |
| ID of the volume. Returned: success | |
| Name of the volume. Returned: success Sample:  | |
| Project the volume belongs to Returned: success Sample:  | |
| Size of disk volume. Returned: success Sample:  | |
| State of the volume Returned: success Sample:  | |
| Disk volume type. Returned: success Sample:  | |
| The url of the uploaded volume or the download url depending extraction mode. Returned: success when state=extracted Sample:  | |
| Name of the vm the volume is attached to (not returned when detached) Returned: success Sample:  | |
| Name of zone the volume is in. Returned: success Sample:  | 
