2026.8.25.2

Overview

Name webcustomdomain
Tag 2026.8.25.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webcustomdomain:2026.8.25.2
Last updated 2026-08-25 09:45:55:+00:00
Created 2026-08-25 09:45:55:+00:00
Digest sha256:4bf28a71e87d676c0ef2d332e9e5ccbb9a73d0542796f6e196659fafc4d8d1b7

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