Overview
|
|
| Name |
functionapp |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/functionapp:2026.9.9.2 |
| Last updated |
2026-09-09 12:47:35:+00:00 |
| Created |
2026-09-09 12:47:35:+00:00 |
| Digest |
sha256:540d9641cf092fb70047542a725d52ad6483d2e96e86a141e9421b7dc333885e |
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.9.9.2' = {
name: 'functionapp${env}${version}'
params: {
env: env
app: app
serverFarmId: serverFarmId
tags: tags
region: region
namePrefix: namePrefix
}
}