如何应用 Pulumi Azure Function App 运行时

发布于 2025-01-12 23:51:33 字数 490 浏览 0 评论 0原文

我有一个 Pulumi 脚本来部署一些服务。一切都很好,除了我不明白如何将运行时应用于 Functions App

api_function_app = azure.appservice.FunctionApp("ApiFunctionApp",
location=resource_group.location,
enabled= True,
enable_builtin_logging = True,
resource_group_name=resource_group.name,
app_service_plan_id=functionStoragePlan.id,
storage_account_name=functionStorageAccount.name,
storage_account_access_key=functionStorageAccount.primary_access_key, os_type="linux", version="~3")

有人见过这样的例子吗?

I have a Pulumi script to deploy few services. Everything is fine except I don't understand how to apply a runtime to Functions App

api_function_app = azure.appservice.FunctionApp("ApiFunctionApp",
location=resource_group.location,
enabled= True,
enable_builtin_logging = True,
resource_group_name=resource_group.name,
app_service_plan_id=functionStoragePlan.id,
storage_account_name=functionStorageAccount.name,
storage_account_access_key=functionStorageAccount.primary_access_key, os_type="linux", version="~3")

Has anyone seen any example of this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那伤。 2025-01-19 23:51:33

我相信您需要为 FUNCTIONS_WORKER_RUNTIME 应用程序设置设置一个值

...
app_settings={
    "FUNCTIONS_WORKER_RUNTIME": "python"
},
...

I believe you need to set a value for FUNCTIONS_WORKER_RUNTIME application setting

...
app_settings={
    "FUNCTIONS_WORKER_RUNTIME": "python"
},
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文