Skip to content

Commit

Permalink
Add DNS record
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Jul 25, 2024
1 parent 7a3efef commit bde117b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tf/environments/prod/dns_records.tf
Original file line number Diff line number Diff line change
Expand Up @@ -997,3 +997,11 @@ resource "aws_route53_record" "test-ooni-nu-_NS_" {
type = "NS"
zone_id = local.dns_root_zone_ooni_nu
}

resource "aws_route53_record" "openvpn-server1-prod-ooni-io-_A_" {
name = "openvpn-server1.prod.ooni.io"
records = ["37.218.243.98"]
ttl = "60"
type = "A"
zone_id = local.dns_root_zone_ooni_io
}

0 comments on commit bde117b

Please sign in to comment.