snapshot
Generated on 11 Dec 2025
from digitalocean.cloud version
v1.2.1
Synopsis
Delete snapshots. View the delete API documentation at https://docs.digitalocean.com/reference/api/api-reference/#operation/snapshots_delete.
Requirements
- pydo >= 0.1.3
- azure-core >= 1.26.1
Parameters
| Parameter | Choices / Default | Description |
|---|---|---|
client_override_optionsdict |
Client override options (developer use). For example, can be used to override the DigitalOcean API endpoint for an internal test suite. If provided, these options will knock out existing options. | |
module_override_optionsdict |
Module override options (developer use). Can be used to override module options to support experimental or future options. If provided, these options will knock out existing options. | |
snapshot_idstr |
Either the ID of an existing snapshot. This will be an integer for a Droplet snapshot or a string for a volume snapshot. | |
snapshot_namestr |
The name of an existing snapshot. The module will fail if there is more than one by the same name, use snapshotid). |
|
statestr |
Choices:
|
State of the resource, present to create, absent to destroy. |
timeoutint |
Default: 300 |
Polling timeout in seconds. |
tokenstr |
DigitalOcean API token. There are several environment variables which can be used to provide this value. DIGITALOCEAN_ACCESS_TOKEN, DIGITALOCEAN_TOKEN, DO_API_TOKEN, DO_API_KEY, DO_OAUTH_TOKEN and OAUTH_TOKEN |
Examples
- name: Delete Droplet snapshot
digitalocean.cloud.snapshot:
token: "{{ token }}"
state: absent
snapshot_id: 11223344
- name: Delete volume snapshot
digitalocean.cloud.snapshot:
token: "{{ token }}"
state: absent
snapshot_id: fbe805e8-866b-11e6-96bf-000f53315a41Return Values
| Key | Returned | Description |
|---|---|---|
errordict |
failure | DigitalOcean API error. Sample: |
msgstr |
always | DigitalOcean volume information. Sample: |
snapshotdict |
always | Snapshot information. Sample: |