存储队列连接字符串环境变量

时间:2017-03-30 17:54:07

标签: azure azure-functions

我是否可以在我的azure应用设置中设置一个环境变量,以使某个功能获取我的存储队列连接字符串?我一直在查看来源,但我什么也看不见。

但我确实看到本节(https://github.com/Azure/azure-content-nlnl/blob/master/articles/azure-functions/functions-run-local.md#to-run-locally)关于本地运行并能够指定连接字符串。我无法在我的oss应用程序中发送连接字符串。

2 个答案:

答案 0 :(得分:2)

是,以下是为功能应用程序设置应用程序设置的步骤:

  1. 通过浏览器中的Azure功能门户访问您的功能应用程序。
  2. 点击左下角的功能应用设置按钮。
  3. 点击配置应用设置以加载应用设置刀片。
  4. 向下滚动至应用设置部分,然后为您的存储队列连接添加密钥和值对。
  5. 点击保存按钮。

答案 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." } }

在查看规范之后,只需为连接添加环境变量名称即可。