Created
July 8, 2023 11:15
-
-
Save iqan/e358742e80c3054afe4b8b61578d4478 to your computer and use it in GitHub Desktop.
demo-servicebus-trigger-funcsetting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| siteConfig: { | |
| appSettings: [ | |
| { | |
| name: 'FUNCTIONS_EXTENSION_VERSION' | |
| value: '~4' | |
| } | |
| { | |
| name: 'FUNCTIONS_WORKER_RUNTIME' | |
| value: 'dotnet' | |
| } | |
| { | |
| name: 'APPINSIGHTS_INSTRUMENTATIONKEY' | |
| value: applicationInsights.properties.InstrumentationKey | |
| } | |
| { | |
| name: 'AzureWebJobsStorage__accountName' | |
| value: storageAccount.name | |
| } | |
| { | |
| name: 'demoservicebus__fullyQualifiedNamespace' | |
| value: '${servicebus.name}.servicebus.windows.net' | |
| } | |
| { | |
| name: 'demoservicebus__credential' | |
| value: 'managedidentity' | |
| } | |
| { | |
| name: 'demoservicebus__clientID' | |
| value: userIdentity.properties.clientId | |
| } | |
| ] | |
| ftpsState: 'FtpsOnly' | |
| minTlsVersion: '1.2' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment