Provides a conditional forwarder for managed Microsoft AD in AWS Directory Service.
resource "aws_directory_service_conditional_forwarder" "example" {
directory_id = "${aws_directory_service_directory.ad.id}"
remote_domain_name = "example.com"
dns_ips = [
"8.8.8.8",
"8.8.4.4",
]
}
The following arguments are supported:
directory_id - (Required) The id of directory. dns_ips - (Required) A list of forwarder IP addresses. remote_domain_name - (Required) The fully qualified domain name of the remote domain for which forwarders will be used. Conditional forwarders can be imported using the directory id and remote_domain_name, e.g.
$ terraform import aws_directory_service_conditional_forwarder.example d-1234567890:example.com
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/directory_service_conditional_forwarder.html