我是否可以在我的azure应用设置中设置一个环境变量,以使某个功能获取我的存储队列连接字符串?我一直在查看来源,但我什么也看不见。
但我确实看到本节(https://github.com/Azure/azure-content-nlnl/blob/master/articles/azure-functions/functions-run-local.md#to-run-locally)关于本地运行并能够指定连接字符串。我无法在我的oss应用程序中发送连接字符串。
答案 0 :(得分:2)
是,以下是为功能应用程序设置应用程序设置的步骤:
答案 1 :(得分:0)
son
"queueBinding": {
"properties": {
"queueName": {
"type": "string",
"description": "The queue name."
},
"connection": {
"type": "string",
"description": "An app setting (or environment variable) with the storage connection string to be used by this binding."
}
}
在查看规范之后,只需为连接添加环境变量名称即可。