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
Is your feature request related to an issue?
Cannot use the module resourcegroup_networkwatcherrg as it doesn't allow to customize the tags which for some organization using azure policies to inherit tag from subscription cause terraform to detect drift every time terraform is triggered.
# Resource groups module for network watchermodule"resourcegroup_networkwatcherrg" {
source="./modules/resourcegroup"count=var.network_watcher_resource_group_enabled?1:0subscription_id=local.subscription_idlocation=var.locationresource_group_name="NetworkWatcherRG"tags={}
}.
adding an optional input variable to configure the tag would alllow to use it
Describe the solution you'd like
add an input variable to be able to setup tags on NetworkWatcherRG resource group.
# Resource groups module for network watchermodule"resourcegroup_networkwatcherrg" {
source="./modules/resourcegroup"count=var.network_watcher_resource_group_enabled?1:0subscription_id=local.subscription_idlocation=var.locationresource_group_name="NetworkWatcherRG"tags=var.network_watcher_resource_group_enabled
}
The text was updated successfully, but these errors were encountered:
Description
Is your feature request related to an issue?
Cannot use the module
resourcegroup_networkwatcherrg
as it doesn't allow to customize the tags which for some organization using azure policies to inherit tag from subscription cause terraform to detect drift every time terraform is triggered.adding an optional
input variable
to configure the tag would alllow to use itDescribe the solution you'd like
add an input variable to be able to setup tags on NetworkWatcherRG resource group.
The text was updated successfully, but these errors were encountered: