我需要从我的 Chalice Python 代码访问我在 AWS Lambda 中创建的环境变量,但我找不到有意义的示例。
想法?
我正在使用 Python 3.6。
我需要从我的 Chalice Python 代码访问我在 AWS Lambda 中创建的环境变量,但我找不到有意义的示例。
想法?
我正在使用 Python 3.6。
您只需使用 os 环境变量访问。
import os
print(os.environ["MY_VARIABLE"])
如果您的问题是如何在 Chalice 中设置环境变量。您在 Chalice 配置中设置它们:
.chalice/config.json
{
"version": "2.0",
"app_name": "gtf",
"stages": {
"dev": {
"environment_variables": {
"MY_VARIABLE": "MY_VALUE"
}
}
}
}
https://chalice.readthedocs.io/en/latest/topics/configfile.html