Overview
|
|
| Name |
privateendpoint |
| Tag |
2026.8.25.4 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/privateendpoint:2026.8.25.4 |
| Last updated |
2026-08-25 10:41:48:+00:00 |
| Created |
2026-08-25 10:41:48:+00:00 |
| Digest |
sha256:4ae5f306741dc06b9b6bc6f508505c41900568984cb4e76c620a69512d938378 |
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.8.25.4' = {
name: 'privateendpoint${env}${version}'
params: {
privateEndpointName: privateEndpointName
subnetId: subnetId
endpointObjectId: endpointObjectId
endpointObjectType: endpointObjectType
}
}