Overview
|
|
| Name |
functionapp |
| Tag |
2026.8.25.4 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/functionapp:2026.8.25.4 |
| Last updated |
2026-08-25 10:39:41:+00:00 |
| Created |
2026-08-25 10:39:41:+00:00 |
| Digest |
sha256:f956e9e0f124a8636b99eae8531cd3fee5b831c84836b2d20b0b6ab85458da0f |
Parameters
| Name |
Type |
Required |
Description |
env |
string |
Yes |
|
app |
string |
Yes |
System/project name |
serverFarmId |
string |
Yes |
|
vnetEnabled |
bool |
No
true |
|
subnetId |
string |
No
'' |
|
tags |
object |
Yes |
Tags to add to the resources |
location |
string |
No
resourceGroup().location |
Azure region of the deployment |
region |
string |
Yes |
|
namePrefix |
string |
Yes |
|
ftpsState |
string |
No
'Disabled' |
|
minTLSVersion |
string |
No
'1.2' |
|
functionAppName |
string |
No
format('{0}-{1}-func-{2}-{3}', namePrefix, app, region, env) |
Function app name, if not specified use default namePrefix-app-func-region-env |
publicNetworkAccess |
string
'Disabled', 'Enabled' |
No
'Enabled' |
|
Outputs
| Name |
Type |
Description |
principalId |
string |
|
name |
string |
|
shortName |
string |
|
defaultHostName |
string |
|
possibleOutboundIps |
string |
|
id |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
@description('System/project name')
param app string
param serverFarmId string
@description('Tags to add to the resources')
param tags object
param region string
param namePrefix string
module functionapp 'br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/functionapp:2026.8.25.4' = {
name: 'functionapp${env}${version}'
params: {
env: env
app: app
serverFarmId: serverFarmId
tags: tags
region: region
namePrefix: namePrefix
}
}