Skip to content

Commit

Permalink
Fix incorrect hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
russdaygh committed Apr 25, 2024
1 parent 29c737a commit acbb8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/blazor_client.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ resource "cloudflare_record" "cname_record" {

resource "azurerm_static_web_app_custom_domain" "custom_domain" {
static_web_app_id = azurerm_static_web_app.blazor-client.id
domain_name = "${data.cloudflare_zone.dns_zone.name}.${cloudflare_record.cname_record.name}"
domain_name = "${cloudflare_record.cname_record.name}.${data.cloudflare_zone.dns_zone.name}"
validation_type = "cname-delegation"
}

0 comments on commit acbb8eb

Please sign in to comment.