1.4 KiB
1.4 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
ultradns | UltraDNS: ultradns_rdpool | docs-ultradns-resource-rdpool | Provides an UltraDNS Resource Distribution pool resource. |
ultradns_rdpool
Provides an UltraDNS Resource Distribution (RD) pool resource, which are used to define rules for returning multiple A or AAAA records for a given owner name. Ordering can be FIXED, RANDOM or ROUND_ROBIN.
Example Usage
# Create a Resource Distribution pool
resource "ultradns_rdpool" "pool" {
zone = "${var.ultradns_domain}"
name = "terraform-rdpool"
ttl = 600
description = "Example RD Pool"
order = "ROUND_ROBIN"
rdata = [ "192.168.0.10", "192.168.0.11" ]
}
Argument Reference
See related part of UltraDNS Docs for details about valid values.
The following arguments are supported:
zone
- (Required) The domain to add the record toname
- (Required) The name of the recordrdata
- (Required) list ip addresses.order
- (Optional) Ordering rule, one of FIXED, RANDOM or ROUND_ROBIN. Default: 'ROUND_ROBIN'.description
- (Optional) Description of the Resource Distribution pool. Valid values are strings less than 256 characters.ttl
- (Optional) The TTL of the pool in seconds. Default:3600
.
Attributes Reference
The following attributes are exported:
id
- The record IDhostname
- The FQDN of the record