Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reference-implementations/AppGW-IAPIM-Func/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ param personalAccessToken string
@description('The FQDN for the Application Gateway. Example - api.contoso.com.')
param appGatewayFqdn string

@description('The password for the TLS certificate for the Application Gateway. The pfx file needs to be copied to deployment/bicep/gateway/certs/appgw.pfx')
@description('The password for the TLS certificate for the Application Gateway. The pfx file needs to be copied to AppGW-IAPIM-Func/bicep/gateway/certs/appgw.pfx')
@secure()
param certificatePassword string

@description('Set to selfsigned if self signed certificates should be used for the Application Gateway. Set to custom and copy the pfx file to deployment/bicep/gateway/certs/appgw.pfx if custom certificates are to be used')
@description('Set to selfsigned if self signed certificates should be used for the Application Gateway. Set to custom and copy the pfx file to AppGW-IAPIM-Func/bicep/gateway/certs/appgw.pfx if custom certificates are to be used')
param appGatewayCertType string

// Variables
Expand Down