Skip to content

Commit

Permalink
[PE-703] Fixed pep service connection name (#1218)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamu0 authored Oct 1, 2024
1 parent 1a8508e commit d4f3eff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/_modules/private_endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "azurerm_private_endpoint" "this" {
subnet_id = var.pep_snet_id

private_service_connection {
name = "${var.project}-${each.key}-pep-01"
name = "${var.project}-${each.key}"
private_connection_resource_id = each.value.resource_id
is_manual_connection = false
subresource_names = each.value.subresource_names
Expand All @@ -24,4 +24,4 @@ resource "azurerm_private_endpoint" "this" {
}

tags = var.tags
}
}

0 comments on commit d4f3eff

Please sign in to comment.