Get information on domains for use in other resources, with the ability to filter and sort the results. If no filters are specified, all domains will be returned.
This data source is useful if the domains in question are not managed by Terraform or you need to utilize any of the domains’ data.
Note: You can use the digitalocean_domain
data source to obtain metadata
about a single domain if you already know the name
.
Use the filter
block with a key
string and values
list to filter domains. (This example
also uses the regular expression match_by
mode in order to match domains by suffix.)
data "digitalocean_domains" "examples" {
filter {
key = "name"
values = ["example\\.com$"]
match_by = "re"
}
}
filter
- (Optional) Filter the results.
The filter
block is documented below.
sort
- (Optional) Sort the results.
The sort
block is documented below.
filter
supports the following arguments:
key
- (Required) Filter the domains by this key. This may be one of name
, urn
, and ttl
.
values
- (Required) A list of values to match against the key
field. Only retrieves domains
where the key
field takes on one or more of the values provided here.
match_by
- (Optional) One of exact
(default), re
, or substring
. For string-typed fields, specify re
to
match by using the values
as regular expressions, or specify substring
to match by treating the values
as
substrings to find within the string field.
all
- (Optional) Set to true
to require that a field match all of the values
instead of just one or more of
them. This is useful when matching against multi-valued fields such as lists or sets where you want to ensure
that all of the values
are present in the list or set.
sort
supports the following arguments:
key
- (Required) Sort the domains by this key. This may be one of name
, urn
, and ttl
.
direction
- (Required) The sort direction. This may be either asc
or desc
.
domains
- A list of domains satisfying any filter
and sort
criteria. Each domain has the following attributes:
name
- (Required) The name of the domain.ttl
- The TTL of the domain.urn
- The uniform resource name of the domain