Skip to content

Commit

Permalink
Merge pull request #208 from kabilar/bluesky
Browse files Browse the repository at this point in the history
Add Bluesky DNS record
  • Loading branch information
waxlamp authored Jan 29, 2025
2 parents 067f3e0 + 9963315 commit d6d0d60
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions terraform/domain.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,16 @@ resource "aws_route53_record" "email-spf" {
ttl = "300"
records = ["v=spf1 include:spf.improvmx.com ~all"]
}

resource "aws_route53_record" "bluesky" {
zone_id = aws_route53_zone.dandi.zone_id
name = "_atproto.dandiarchive.org"
type = "TXT"
ttl = "300"
records = ["did=did:plc:5tjxaioq3ynbbynnarq5dziq"]
}

import {
to = aws_route53_record.bluesky
id = "Z02063701JNV8GCOUJIZZ__atproto.dandiarchive.org_TXT"
}

0 comments on commit d6d0d60

Please sign in to comment.