Vultr DocsLatest Content


vultr_reverse_ipv6

Updated on 15 September, 2025

A data source that retrieves information about a specific Vultr Reverse IPv6 DNS record using filters


Get information about a Vultr Reverse IPv6.

Example Usage

Get the information for an IPv6 reverse DNS record by reverse:

hcl
data "vultr_reverse_ipv6" "my_reverse_ipv6" {
  filter {
    name = "reverse"
    values = ["host.example.com"]
  }
}

Argument Reference

The following arguments are supported:

  • filter - (Required) Query parameters for finding IPv6 reverse DNS records.

The filter block supports the following:

  • name - Attribute name to filter with.
  • values - One or more values to filter with.

Attributes Reference

The following attributes are exported:

  • instance_id - The ID of the instance the IPv6 reverse DNS record was set for.
  • ip - The IPv6 address in canonical format used in the reverse DNS record.
  • reverse - The hostname used in the IPv6 reverse DNS record.

Comments

No comments yet.