2026.8.26.3

Overview

Name webcustomdomain
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webcustomdomain:2026.8.26.3
Last updated 2026-08-26 07:45:06:+00:00
Created 2026-08-26 07:45:06:+00:00
Digest sha256:9303c045d48ee737523feb764ef0646d5e3604ca2dc73fd2a6011b3c4df31cc4

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.26.3' = {
    name: 'webcustomdomain${env}${version}'
    params: {
      appName: appName
      domainName: domainName
      serverFarmId: serverFarmId
      tags: tags
    }
}