Retrieves detailed information about a Vultr snapshot using filters like description to identify the specific snapshot.
Get information about a Vultr snapshot.
Get the information for a snapshot by description
:
data "vultr_snapshot" "my_snapshot" {
filter {
name = "description"
values = ["my-snapshot-description"]
}
}
The following arguments are supported:
filter
- (Required) Query parameters for finding snapshots.The filter
block supports the following:
name
- Attribute name to filter with.values
- One or more values filter with.The following attributes are exported:
id
- The ID for the given snapshot.description
- The description of the snapshot.size
- The size of the snapshot in bytes.status
- The status of the snapshot.date_created
- The date the snapshot was added to your Vultr account.os_id
- The operating system ID of the snapshot.app_id
- The application ID of the snapshot.
No comments yet.