Skip to content

Commit

Permalink
[CES-552] Add assistenza.ioapp.it cname record pointing to zendesk (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-calabrese authored Nov 26, 2024
1 parent a7385ae commit c87c5b7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/common/_modules/global/modules/dns/dns_ioweb_it.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,13 @@ resource "azurerm_dns_caa_record" "ioweb_it" {
}

tags = var.tags
}
}

# CNAME for zendesk help center
resource "azurerm_dns_cname_record" "zendesk" {
name = "assistenza"
zone_name = azurerm_dns_zone.ioweb_it.name
resource_group_name = var.resource_groups.external
ttl = var.dns_default_ttl_sec
record = "hc-io.zendesk.com"
}

0 comments on commit c87c5b7

Please sign in to comment.