Skip to content

Commit

Permalink
terraform/prod-eun: add canary TXT record
Browse files Browse the repository at this point in the history
This creates a TXT record at test.prod-eun.az.vedenemo.dev that should
resolve once the NS delegation on vedenemo.dev has been completed.

Signed-off-by: Florian Klink <[email protected]>
  • Loading branch information
flokli committed Dec 5, 2024
1 parent 78cf37a commit 7b5b6d9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions terraform/prod-eun/dns/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ resource "azurerm_dns_zone" "main" {
resource_group_name = var.resource_group_name
}

resource "azurerm_dns_txt_record" "test" {
name = "test"
zone_name = azurerm_dns_zone.main.name
resource_group_name = var.resource_group_name
ttl = 300

record {
value = "Success"
}
}


output "name_servers" {
value = azurerm_dns_zone.main.name_servers
Expand Down

0 comments on commit 7b5b6d9

Please sign in to comment.