2026.8.31.6

Overview

Name privateendpoint
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/privateendpoint:2026.8.31.6
Last updated 2026-08-31 10:52:09:+00:00
Created 2026-08-31 10:52:09:+00:00
Digest sha256:ebfcc888748ea30faefd34e5b28453f5bcef8664485f5af9a76d16903cfeeca2

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.31.6' = {
    name: 'privateendpoint${env}${version}'
    params: {
      privateEndpointName: privateEndpointName
      subnetId: subnetId
      endpointObjectId: endpointObjectId
      endpointObjectType: endpointObjectType
    }
}