2026.9.9.2

Overview

Name webcustomdomain
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webcustomdomain:2026.9.9.2
Last updated 2026-09-09 12:48:06:+00:00
Created 2026-09-09 12:48:06:+00:00
Digest sha256:01671c6e7cd13aab2c542478dded8065d5cd1b28933d9acabccf24729ae42905

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