Skip to content
Discussion options

You must be logged in to vote

It needs to be a manualPrivateLinkServiceConnections

resource elasticPrivateEndpoint 'Microsoft.Network/privateEndpoints@2024-05-01' = {
  name: 'elastic-cloud-private-endpoint'
  location: location
  tags: union(tags, { 'azd-service-name': 'elastic' })
  properties: {
    manualPrivateLinkServiceConnections: [
      {
    
        name: 'elasticPrivateLinkConnection'
        properties: {
          privateLinkServiceId: 'westeurope-prod-001-privatelink-service.190cd496-6d79-4ee2-8f23-0667fd5a8ec1.westeurope.azure.privatelinkservice'
          groupIds: []
        }
      }
    ]
    subnet: {
      id: '${vnet.id}/subnets/${subnetName}'
    }
  }
}

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by jyrijh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant