Skip to content

Commit

Permalink
update block explorer DNS records (#294)
Browse files Browse the repository at this point in the history
- add astral cname record
  • Loading branch information
DaMandal0rian authored Mar 28, 2024
1 parent e51abe8 commit a236879
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion dns/records.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,22 @@ resource "cloudflare_record" "block_explorer" {
proxied = false
ttl = 3600
type = "CNAME"
value = "subspace.github.io"
value = "astral-prod.netlify.app"
zone_id = data.cloudflare_zone.subspace_network.id
}

// subspace block explorer Astral
resource "cloudflare_record" "block_explorer_astral" {
comment = "Subspace block explorer"
name = "astral"
proxied = false
ttl = 3600
type = "CNAME"
value = "astral-prod.netlify.app"
zone_id = data.cloudflare_zone.subspace_network.id
}


// subspace telemetry
resource "cloudflare_record" "telemetry" {
comment = "Subspace Telemetry"
Expand Down

0 comments on commit a236879

Please sign in to comment.