mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Summary: terraform changes already applied Reviewed By: a8m Differential Revision: D16752076 fbshipit-source-id: b3ccf1c827f6d918c6507f2978c3b497533ab725
16 lines
301 B
HCL
16 lines
301 B
HCL
locals {
|
|
domain_name = "entgo.io"
|
|
}
|
|
|
|
resource "aws_route53_zone" "zone" {
|
|
name = local.domain_name
|
|
}
|
|
|
|
resource "aws_route53_record" "ns" {
|
|
name = aws_route53_zone.zone.name
|
|
type = "NS"
|
|
zone_id = aws_route53_zone.zone.id
|
|
ttl = 300
|
|
records = aws_route53_zone.zone.name_servers
|
|
}
|