Skip to content

Commit

Permalink
fix: Data Indexer test (#302)
Browse files Browse the repository at this point in the history
* applied fix for module event-hub

* fix: Data Indexer tests
  • Loading branch information
GNuccio96 authored May 22, 2024
1 parent de41501 commit 6708c24
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion data_indexer/tests/backend.ini
Original file line number Diff line number Diff line change
@@ -1 +1 @@
subscription=DEV-IO
subscription=devopslab
22 changes: 12 additions & 10 deletions data_indexer/tests/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,19 @@ module "pendpoints_snet" {
}

module "event_hub" {
source = "../../eventhub"
name = format("%s-evh-ns", local.project)
location = var.location
resource_group_name = azurerm_resource_group.rg.name
sku = "Basic"
zone_redundant = true
virtual_network_ids = [azurerm_virtual_network.vnet.id]
subnet_id = module.pendpoints_snet.id
source = "../../eventhub"
name = format("%s-evh-ns", local.project)
location = var.location
resource_group_name = azurerm_resource_group.rg.name
sku = "Basic"
zone_redundant = true
virtual_network_ids = [azurerm_virtual_network.vnet.id]
private_endpoint_subnet_id = module.pendpoints_snet.id
private_endpoint_created = true
private_dns_zones = {
id = [azurerm_private_dns_zone.privatelink_servicebus.id]
name = [azurerm_private_dns_zone.privatelink_servicebus.name]
id = [azurerm_private_dns_zone.privatelink_servicebus.id]
name = [azurerm_private_dns_zone.privatelink_servicebus.name]
resource_group_name = azurerm_resource_group.rg.name
}

eventhubs = [
Expand Down

0 comments on commit 6708c24

Please sign in to comment.