2026.8.25.4

Overview

Name webcustomdomain
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webcustomdomain:2026.8.25.4
Last updated 2026-08-25 10:40:07:+00:00
Created 2026-08-25 10:40:07:+00:00
Digest sha256:e9834d8963c89b532af42c380d5a3c2beaaad45c982ba8ddb1099a858a3efc02

Parameters

Name Type Required Description
appName string Yes
domainName string Yes
serverFarmId string Yes
location string No
resourceGroup().location
tags object Yes

Outputs

Name Type Description
asuidTxtRecord string
defaultHostName string

Example

@description('The target environment.')
param env string

@description('The deployment version.')
param version string = '1.0.0.0'

param appName string

param domainName string

param serverFarmId string

param tags object


module webcustomdomain 'br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webcustomdomain:2026.8.25.4' = {
    name: 'webcustomdomain${env}${version}'
    params: {
      appName: appName
      domainName: domainName
      serverFarmId: serverFarmId
      tags: tags
    }
}