-
I need to create a VNet peering between 2 regions to use elastic cloud and this we have tested manually. So the question is this even possible or do I just need to create manually after everything else i deployed? resource elasticPrivateEndpoint 'Microsoft.Network/privateEndpoints@2024-05-01' = {
name: 'elastic-cloud-private-endpoint'
location: location
tags: union(tags, { 'azd-service-name': 'elastic' })
properties: {
privateLinkServiceConnections: [
{
name: 'elasticPrivateLinkConnection'
properties: {
privateLinkServiceId: 'westeurope-prod-001-privatelink-service.190cd496-6d79-4ee2-8f23-0667fd5a8ec1.westeurope.azure.privatelinkservice'
groupIds: [
'elastic'
]
}
}
]
subnet: {
id: '${vnet.id}/subnets/${subnetName}'
}
}
} Regard, Jyri |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Elastic instructions for creating private endpoint |
Beta Was this translation helpful? Give feedback.
-
It needs to be a manualPrivateLinkServiceConnections
|
Beta Was this translation helpful? Give feedback.
It needs to be a manualPrivateLinkServiceConnections