2026.8.31.6

Overview

Name webcustomdomain
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webcustomdomain:2026.8.31.6
Last updated 2026-08-31 10:50:34:+00:00
Created 2026-08-31 10:50:34:+00:00
Digest sha256:316646fe600723eab8599dd9b26f9881767b77f5f4a8cb8867c9af79a04f1dee

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