Skip to content

Commit 829e090

Browse files
authored
Merge pull request #466 from autonomys/explorer_auto_evm_chronos
Explorer auto evm chronos DNS
2 parents 1ca6795 + 6be45d9 commit 829e090

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

resources/terraform/dns/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,11 @@ resource "cloudflare_dns_record" "name_of_the_resource" {
3737
2. Update the resource(s) you wish to update
3838
3. Submit the changes as a PR to infra.
3939
4. Infra team will deploy the changes and merge the PR.
40+
41+
## For infra team
42+
43+
1. Once the PR is created, pull down the PR locally
44+
2. Download `proxied.json` file bitwarden and store it under `resources/terraform/dns`
45+
3. If the record to be added or updated is proxied, add the record value under `proxied.json`
46+
4. Do plan and apply the change through terraform
47+
5. upload back the `proxied.json` if the file is updated

resources/terraform/dns/autonomys_xyz.tf

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,3 +1117,47 @@ resource "cloudflare_dns_record" "staking_autonomys_xyz" {
11171117
zone_id = data.cloudflare_zone.autonomys_xyz.zone_id
11181118
settings = {}
11191119
}
1120+
1121+
resource "cloudflare_dns_record" "explorer_auto_evm_chronos" {
1122+
content = "15.204.31.207"
1123+
name = "explorer.auto-evm.chronos.autonomys.xyz"
1124+
proxied = false
1125+
tags = []
1126+
ttl = 1
1127+
type = "A"
1128+
zone_id = data.cloudflare_zone.autonomys_xyz.zone_id
1129+
settings = {}
1130+
}
1131+
1132+
resource "cloudflare_dns_record" "stats_explorer_auto_evm_chronos" {
1133+
content = "15.204.31.207"
1134+
name = "stats.explorer.auto-evm.chronos.autonomys.xyz"
1135+
proxied = false
1136+
tags = []
1137+
ttl = 1
1138+
type = "A"
1139+
zone_id = data.cloudflare_zone.autonomys_xyz.zone_id
1140+
settings = {}
1141+
}
1142+
1143+
resource "cloudflare_dns_record" "scv_explorer_auto_evm_chronos" {
1144+
content = "15.204.31.207"
1145+
name = "scv.explorer.auto-evm.chronos.autonomys.xyz"
1146+
proxied = false
1147+
tags = []
1148+
ttl = 1
1149+
type = "A"
1150+
zone_id = data.cloudflare_zone.autonomys_xyz.zone_id
1151+
settings = {}
1152+
}
1153+
1154+
resource "cloudflare_dns_record" "grafana_explorer_auto_evm_chronos" {
1155+
content = "15.204.31.207"
1156+
name = "grafana.explorer.auto-evm.chronos.autonomys.xyz"
1157+
proxied = false
1158+
tags = []
1159+
ttl = 1
1160+
type = "A"
1161+
zone_id = data.cloudflare_zone.autonomys_xyz.zone_id
1162+
settings = {}
1163+
}

0 commit comments

Comments
 (0)