Note
This plugin is part of the community.general collection (version 2.0.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.packet_volume
.
New in version 0.2.0: of community.general
The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments | |
---|---|---|---|
auth_token string | Packet API token. You can also supply it in env var PACKET_API_TOKEN . | ||
billing_cycle string |
| Billing cycle for new volume. | |
description string | User-defined description attribute for Packet volume. It is used used as idempotent identifier - if volume with given description exists, new one is not created. | ||
facility string | Location of the volume. Volumes can only be attached to device in the same location. | ||
id string | UUID of a volume. | ||
locked boolean |
| Create new volume locked. | |
name string | Selector for API-generated name of the volume | ||
plan string |
| storage_1 for standard tier, storage_2 for premium (performance) tier. Tiers are described at https://www.packet.com/cloud/storage/. | |
project_id string / required | ID of project of the device. | ||
size integer | Size of the volume in gigabytes. | ||
snapshot_policy dictionary | Snapshot policy for new volume. | ||
snapshot_count integer / required | How many snapshots to keep, a positive integer. | ||
snapshot_frequency string / required |
| Frequency of snapshots. | |
state string |
| Desired state of the volume. |
# All the examples assume that you have your Packet API token in env var PACKET_API_TOKEN. # You can also pass the api token in module param auth_token. - hosts: localhost vars: volname: testvol123 project_id: 53000fb2-ee46-4673-93a8-de2c2bdba33b tasks: - name: Create volume community.general.packet_volume: description: "{{ volname }}" project_id: "{{ project_id }}" facility: 'ewr1' plan: 'storage_1' state: present size: 10 snapshot_policy: snapshot_count: 10 snapshot_frequency: 1day register: result_create - name: Delete volume community.general.packet_volume: id: "{{ result_create.id }}" project_id: "{{ project_id }}" state: absent
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
description string | success | The user-defined description of the volume resource. Sample: Just another volume |
id string | success | UUID of specified volume Sample: 53000fb2-ee46-4673-93a8-de2c2bdba33c |
name string | if volume is attached/detached to/from some device | The API-generated name of the volume resource. Sample: volume-a91dc506 |
© 2012–2018 Michael DeHaan
© 2018–2021 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.11/collections/community/general/packet_volume_module.html