Table: digitalocean_domain - Query DigitalOcean Domains using SQL
A DigitalOcean Domain is a resource in the DigitalOcean cloud platform that represents a DNS zone file. It provides a way to manage DNS records for a particular domain, enabling users to point domain names to various servers and services. DigitalOcean Domains help in managing and configuring domain names for applications hosted on DigitalOcean.
Table Usage Guide
The digitalocean_domain
table provides insights into the DNS records within the DigitalOcean platform. As a system administrator or a DevOps engineer, explore domain-specific details through this table, including names, TTL values, and associated metadata. Utilize it to uncover information about domains, such as their zone file details, the IP addresses they are pointing to, and the verification of DNS configurations.
Examples
Basic info
Explore the various domains on DigitalOcean and understand their unique identifiers and time to live (TTL) settings. This can be helpful for managing and optimizing your domain configurations.
select name, urn, ttlfrom digitalocean_domain;
select name, urn, ttlfrom digitalocean_domain;
Schema for digitalocean_domain
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
akas | jsonb | Array of globally unique identifier strings (also known as) for the resource. | |
name | text | = | The globally unique human-readable name for the domain. |
title | text | Title of the resource. | |
ttl | bigint | TTL value of domain. | |
urn | text | The uniform resource name (URN) for the domain. | |
zone_file | text | It contains the DNS record details. |