openstack_dns_transfer_request_v2

Manages a DNS zone transfer request in the OpenStack DNS Service.

Example Usage

Automatically detect the correct network

resource "openstack_dns_zone_v2" "example_zone" {
  name        = "example.com."
  email       = "jdoe@example.com"
  description = "An example zone"
  ttl         = 3000
  type        = "PRIMARY"
}

resource "openstack_dns_transfer_request_v2" "request_1" {
  zone_id           = openstack_dns_zone_v2.example_zone.id
  description       = "a transfer request"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

This resource can be imported by specifying the transferRequest ID:

$ terraform import openstack_dns_transfer_request_v2.request_1 request_id