2026.8.25.4

Overview

Name groups
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/cdn/origin/groups:2026.8.25.4
Last updated 2026-08-25 10:36:33:+00:00
Created 2026-08-25 10:36:33:+00:00
Digest sha256:4741a566f96b6eb8a9308dd448d833da18394d6e9d098bf8796d19d69660a251

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.8.25.4' = {
    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
    }
}