You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
When deploying private_link_by_service DNS zones, they deploy to a pre-defined resource group as {prefix}-dns. It appears that the resource_group_name cannot be changed in the same way that other connectivity resources can be changed using advanced settings.
Describe the solution you'd like
using the advanced = {} block to pass in custom resource group names to override the default prefix-dns resource groups
Additional context
The text was updated successfully, but these errors were encountered:
You can use the advance setting in your connectivity configuration block in the local.tf file. using below snippet.
NOTE: Use of the advanced setting is currently undocumented and experimental. Please be aware that using this setting may result in future breaking changes.
This works perfect for now
... other connectivity configuration
#Advance settings you need to fix the issue.locals {
configure_connectivity_resources={
advanced = {
custom_settings_by_resource_type = {
azurerm_resource_group = {
dns = {
("location1 name") = {
name ="customize resource group name"
},
#Remove location 2 if not needed.
("location2 name") = {
name ="customize resource group name"
}
}
}
}
}
}
}
Community Note
Description
When deploying private_link_by_service DNS zones, they deploy to a pre-defined resource group as {prefix}-dns. It appears that the resource_group_name cannot be changed in the same way that other connectivity resources can be changed using advanced settings.
Describe the solution you'd like
using the advanced = {} block to pass in custom resource group names to override the default prefix-dns resource groups
Additional context
The text was updated successfully, but these errors were encountered: