Overview
|
|
| Name |
privateendpoint |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/privateendpoint:2026.9.9.2 |
| Last updated |
2026-09-09 12:49:47:+00:00 |
| Created |
2026-09-09 12:49:47:+00:00 |
| Digest |
sha256:05bef09381b759c059d3339f6e6c9e695d2c9396b8f75069a89d97d9acd657c7 |
Parameters
| Name |
Type |
Required |
Description |
tags |
object |
No
{ } |
Tags to apply to all resources. |
privateEndpointName |
string |
Yes |
|
location |
string |
No
resourceGroup().location |
Location for all resources. |
subnetId |
string |
Yes |
|
endpointObjectId |
string |
Yes |
|
endpointObjectFqdn |
string |
No
'' |
|
endpointObjectType |
string |
Yes |
|
privateEndpointIp |
string |
No
'' |
|
registerPrivateDNS |
bool |
No
false |
|
endpointBaseName |
string |
No
'' |
|
privateDnsZoneSubscriptionId |
▲ secure ▲
string |
No
'' |
|
privateDnsZoneResourceGroupName |
▲ secure ▲
string |
No
'' |
|
privateDnsZoneConfigName |
string |
No
'' |
|
Outputs
| Name |
Type |
Description |
privateEndpointIpAddress |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param privateEndpointName string
param subnetId string
param endpointObjectId string
param endpointObjectType string
module privateendpoint 'br:bicepacrdevwcom.azurecr.io/bicep/modules/privateendpoint:2026.9.9.2' = {
name: 'privateendpoint${env}${version}'
params: {
privateEndpointName: privateEndpointName
subnetId: subnetId
endpointObjectId: endpointObjectId
endpointObjectType: endpointObjectType
}
}