-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add EventGrid diagnostic settings (#4258)
* add eventgrid diagnostic settings * changelog * core version * add system topics * uncomment
- Loading branch information
1 parent
97debdc
commit 3704002
Showing
8 changed files
with
74 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
data "local_file" "airlock_processor_version" { | ||
filename = "${path.root}/../../airlock_processor/_version.py" | ||
} | ||
|
||
data "azurerm_private_dns_zone" "eventgrid" { | ||
name = module.terraform_azurerm_environment_configuration.private_links["privatelink.eventgrid.azure.net"] | ||
resource_group_name = var.resource_group_name | ||
} | ||
|
||
data "azurerm_container_registry" "mgmt_acr" { | ||
name = var.mgmt_acr_name | ||
resource_group_name = var.mgmt_resource_group_name | ||
} | ||
|
||
data "azurerm_monitor_diagnostic_categories" "eventgrid_custom_topics" { | ||
resource_id = azurerm_eventgrid_topic.airlock_notification.id | ||
} | ||
|
||
data "azurerm_monitor_diagnostic_categories" "eventgrid_system_topics" { | ||
resource_id = azurerm_eventgrid_system_topic.export_approved_blob_created.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.11.16" | ||
__version__ = "0.11.17" |