Skip to content

Commit

Permalink
fix: use wildcard dns records for brokers in Azure private endpoint m…
Browse files Browse the repository at this point in the history
…odule (#82)

* fix: Add dns record for broker pod too

* fix duplicate resource name

* Use wildcard
  • Loading branch information
jiangpengcheng authored May 15, 2024
1 parent a300c86 commit 0528113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/azure/private-endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "private-link" {
}

resource "azurerm_private_dns_a_record" "pulsar-record" {
name = local.domain_name
name = "*"
zone_name = azurerm_private_dns_zone.private-zone.name
resource_group_name = var.resource_group_name
ttl = 300
Expand Down

0 comments on commit 0528113

Please sign in to comment.