Overview
|
|
| Name |
groups |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/cdn/origin/groups:2026.9.9.2 |
| Last updated |
2026-09-09 12:44:12:+00:00 |
| Created |
2026-09-09 12:44:12:+00:00 |
| Digest |
sha256:b2d9629d64976d3ea65ae05635a53e0ee0592009cb5ab7f3673ab1efef041213 |
Parameters
| Name |
Type |
Required |
Description |
hostname |
string |
Yes |
|
dnsZoneName |
string |
Yes |
|
frontDoorName |
string |
Yes |
|
originHostname |
string |
Yes |
|
tags |
object |
Yes |
|
apexDomain |
bool |
Yes |
|
dnsZoneResourceGroupName |
string |
No
resourceGroup().name |
|
dnsZoneSubscriptionId |
string |
No
subscription().id |
|
addDnsRecord |
bool |
Yes |
|
forwardingProtocol |
string |
Yes |
|
supportedProtocols |
array |
Yes |
|
httpsRedirect |
string |
Yes |
|
originPath |
string |
Yes |
|
Outputs
| Name |
Type |
Description |
txtRecord |
string |
|
hostname |
string |
|
dnsAuth |
string |
|
fqdn |
string |
|
endpoint |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param hostname string
param dnsZoneName string
param frontDoorName string
param originHostname string
param tags object
param apexDomain bool
param addDnsRecord bool
param forwardingProtocol string
param supportedProtocols array
param httpsRedirect string
param originPath string
module groups 'br:bicepacrdevwcom.azurecr.io/bicep/modules/cdn/origin/groups:2026.9.9.2' = {
name: 'groups${env}${version}'
params: {
hostname: hostname
dnsZoneName: dnsZoneName
frontDoorName: frontDoorName
originHostname: originHostname
tags: tags
apexDomain: apexDomain
addDnsRecord: addDnsRecord
forwardingProtocol: forwardingProtocol
supportedProtocols: supportedProtocols
httpsRedirect: httpsRedirect
originPath: originPath
}
}