/ dns.tf
dns.tf
1 /* DNS ------------------------------------*/ 2 3 /** WARNING: The .ps TLD has special status. 4 * Its registration took extra long time when it was purchased. 5 * It required help from Gandi support to change the nameservers to AWS ones. 6 * Make changes to it on Gandi side with that in mind. 7 **/ 8 9 /* Configure managing domain with Route53 Hosted Zone */ 10 resource "aws_route53_zone" "dap_ps" { 11 name = "dap.ps" 12 comment = "Domain for Dapp Discovery website." 13 }